*, *::before, *::after { box-sizing: border-box; }

:root {
  --gold: #C9A227;
  --gold-light: #D4AF37;
  --gold-dim: #a8882a;
  --gold-faint: rgba(212,175,55,0.10);
  --gold-border: rgba(201,162,39,0.25);
  --heading: #0A1F44;
  --body: #1e293b;
  --text-muted: #64748b;
  --text-soft: #475569;
  --bg: #f5f7fa;
  --bg-alt: #ffffff;
  --card-bg: #ffffff;
  --card-shadow: 0 2px 16px rgba(10,31,68,0.08);
  --card-shadow-hover: 0 6px 28px rgba(10,31,68,0.14);
  --input-bg: #f8fafc;
  --input-border: #d1d9e0;
  --border: #e4e9f0;
  --navbar-bg: #ffffff;
  --footer-bg: #0A1F44;
  --radius: 12px;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--body);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.65;
}

/* ── SCROLL FADE IN ──────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ──────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 64px;
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(10,31,68,0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--heading);
}

.logo-img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img-wrap img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover, .nav-links a.active {
  background: var(--gold-faint);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--heading);
  padding: 6px;
}

/* ── CONTAINER ───────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* ── CARDS ───────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.admin-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.admin-card.full { grid-column: 1 / -1; }

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) { .admin-grid { grid-template-columns: 1fr; } }

.admin-card h3 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #C9A227);
  color: #0A1F44;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s, filter 0.15s;
  letter-spacing: 0.01em;
}

.btn:hover {
  box-shadow: 0 4px 18px rgba(201,162,39,0.4);
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-large {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-light);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gold-faint);
  color: var(--gold-dim);
  box-shadow: none;
}

.btn-primary { background: linear-gradient(135deg, #D4AF37, #C9A227); color: #0A1F44; }

.btn-danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* ── HEADINGS ────────────────────────── */
h1, h2, h3, h4 {
  color: var(--heading);
  line-height: 1.3;
}

h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; }
h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }

/* ── HERO ────────────────────────────── */
.hero {
  text-align: center;
  padding: 60px 16px 40px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef9e7, #fdf3c1);
  color: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--heading);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-row span::before { content: "✓  "; color: var(--gold); font-weight: 700; }

/* ── STATS ROW ───────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 -24px 40px;
  padding: 28px 0;
  background: var(--heading);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 8px 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-light);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ── MODULES GRID ────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 720px) { .modules-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .modules-grid { grid-template-columns: 1fr; } }

.module-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  text-align: center;
}

.module-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

.module-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.module-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--heading);
}

.module-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── REPORT PREVIEW SECTION ──────────── */
.report-preview-section {
  background: linear-gradient(135deg, #0A1F44, #1a3a6e);
  border-radius: 16px;
  padding: 44px 40px;
  margin-bottom: 40px;
  text-align: center;
}

.report-preview-section h2 {
  color: var(--gold-light);
}

.report-preview-section p {
  color: rgba(255,255,255,0.7);
}

.report-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.report-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ── SESSION CTA ─────────────────────── */
.session-cta {
  margin-bottom: 40px;
}

.session-cta .card {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, #fef9e7, #fff8e1);
}

/* ── FORM WIZARD ─────────────────────── */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 28px;
  max-width: 640px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 0 8px;
}

.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.wizard-step-dot .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e4e9f0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.wizard-step-dot.active .dot {
  background: var(--gold-light);
  color: var(--heading);
  border-color: var(--gold-dim);
  box-shadow: 0 2px 12px rgba(212,175,55,0.4);
}

.wizard-step-dot.done .dot {
  background: var(--heading);
  color: white;
}

.dot-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.wizard-step-dot.active .dot-label { color: var(--gold); }

.wizard-connector {
  flex: 1;
  height: 2px;
  background: #e4e9f0;
  min-width: 16px;
  max-width: 40px;
  margin-bottom: 20px;
  transition: background 0.25s;
}

.wizard-connector.done { background: var(--heading); }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.form-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 16px;
}

/* ── FORM FIELDS ─────────────────────── */
label.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin: 18px 0 6px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--input-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--body);
  background: var(--input-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: #fff;
}

textarea { resize: vertical; min-height: 72px; }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.radio-group label:hover {
  background: #f8f9fb;
  border-color: var(--border);
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  accent-color: var(--gold);
}

/* ── FLASH MESSAGES ──────────────────── */
.flash-ok {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.flash-err {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── LOADING OVERLAY ─────────────────── */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(245,247,250,0.9);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  backdrop-filter: blur(6px);
}

.loading-overlay.show { display: flex; }

.spinner {
  width: 52px;
  height: 52px;
  border: 4px solid var(--border);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  text-align: center;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

/* ── RESULT PAGE ─────────────────────── */
.result-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.result-section h3 {
  color: var(--gold-dim);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.result-section h4 {
  color: var(--heading);
  margin: 0 0 12px;
}

.blur-text {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s;
}

.report-lock-card {
  background: linear-gradient(135deg, #0A1F44, #1a3a6e);
  border-radius: 14px;
  padding: 36px;
  text-align: center;
  margin-bottom: 24px;
}

.report-lock-card h2 { color: var(--gold-light); margin-bottom: 10px; }
.report-lock-card p { color: rgba(255,255,255,0.75); }

.report-full-text {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
}

/* ── RISK METER ──────────────────────── */
.risk-bar { height: 10px; border-radius: 6px; background: var(--border); overflow: hidden; margin: 8px 0; }
.risk-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #4ade80, var(--gold-light), #f97316, #ef4444); transition: width 1s ease; }

/* ── SUCCESS PAGE ────────────────────── */
.success-hero {
  text-align: center;
  padding: 32px 16px;
  background: linear-gradient(135deg, #0A1F44, #1a3a6e);
  border-radius: 16px;
  margin-bottom: 28px;
}

.success-hero h1 { color: var(--gold-light); }
.success-hero p { color: rgba(255,255,255,0.8); }

/* ── TABLE ───────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th {
  background: var(--bg);
  color: var(--heading);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}

.data-table tr:hover td { background: #f8f9fb; }

/* ── ADMIN PANEL ─────────────────────── */
.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
}

.tab-btn {
  background: #f1f5f9;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--heading);
  color: var(--gold-light);
  border-color: var(--heading);
}

.tab-btn:hover:not(.active) {
  background: var(--gold-faint);
  border-color: var(--gold-border);
  color: var(--gold-dim);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.setup-step {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 10px 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.setup-step code {
  background: #e2e8f0;
  color: var(--heading);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.int-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.int-ok { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.int-err { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }

.int-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.int-ok .int-dot { background: #4ade80; }
.int-err .int-dot { background: #f87171; }

/* ── FOOTER ──────────────────────────── */
.footer {
  background: var(--footer-bg);
  padding: 32px 40px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-align: center;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo-wrap img { width: 28px; height: 28px; object-fit: contain; }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--gold-light); }

/* ── BLOG ────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.blog-card h3 { font-size: 15px; color: var(--heading); margin: 0 0 8px; }
.blog-card p { font-size: 13px; color: var(--text-muted); margin: 0 0 12px; }
.blog-card a { font-size: 13px; color: var(--gold); text-decoration: none; font-weight: 600; }

/* ── CONTACT ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

.social-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--heading);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 10px;
}

.social-link-btn:hover { background: var(--gold-faint); border-color: var(--gold-border); }

/* ── LOGIN PAGE ──────────────────────── */
.login-wrap {
  max-width: 420px;
  margin: 60px auto;
}

/* ── MOBILE NAV ──────────────────────── */
@media (max-width: 700px) {
  .navbar { padding: 0 18px; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(10,31,68,0.1);
    gap: 4px;
    z-index: 199;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 15px; padding: 10px 14px; }

  .container { padding: 24px 16px 48px; }

  .stats-row { margin: 0 -16px 32px; }
  .stat-item { padding: 8px 20px; }

  .report-preview-section { padding: 28px 20px; }
  .card { padding: 20px 18px; }
  .admin-card { padding: 18px; }

  .wizard-progress { gap: 0; justify-content: flex-start; padding: 4px 8px 8px; }
  .wizard-connector { min-width: 10px; max-width: 24px; }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .report-items { gap: 8px; }
  .report-item { font-size: 12px; padding: 6px 12px; }
}

/* ── UNIVERSITY TABLE ────────────────── */
.uni-table-wrap { overflow-x: auto; }

.uni-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 480px;
}

.uni-table th {
  background: var(--bg);
  color: var(--heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 12px;
  border-bottom: 2px solid var(--border);
  text-align: left;
}

.uni-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}

.uni-table tr:hover td { background: #f8f9fb; }

/* ── PROFILE BADGE ───────────────────── */
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--text-soft);
  margin: 4px;
}

/* ── SECTION DIVIDER ─────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* ── PAGE HEADER STRIP ───────────────── */
.page-header {
  background: linear-gradient(135deg, var(--heading) 0%, #1a3a6e 100%);
  padding: 36px 24px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 32px;
}

.page-header h2 { color: var(--gold-light); margin: 0 0 8px; }
.page-header p { color: rgba(255,255,255,0.7); margin: 0; font-size: 15px; }

/* ── ABOUT ───────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #0A1F44, #1a3a6e);
  border-radius: 16px;
  padding: 48px 40px;
  margin-bottom: 32px;
  text-align: center;
}

.about-hero h1 { color: var(--gold-light); }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.trust-card .icon { font-size: 26px; margin-bottom: 8px; }
.trust-card h4 { font-size: 14px; color: var(--heading); margin: 0 0 4px; }
.trust-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ── PAYMENT ERROR ───────────────────── */
.payment-error-card {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 24px;
}

.payment-error-card h2 { color: #b91c1c; }
.payment-error-card p { color: #7f1d1d; }
