:root {
  --ink: #0d1117;
  --ink-2: #1c2333;
  --ink-3: #2d3748;
  --muted: #6b7a90;
  --muted-2: #a0aabb;
  --line: #e2e8f0;
  --surface: #f7f9fc;
  --white: #ffffff;

  --red: #c0392b;
  --red-soft: #fdecea;

  --green: #1a7a4a;
  --green-soft: #e8f5ee;

  --amber: #b45309;
  --amber-soft: #fef3c7;

  --accent: #1b3a8c;
  --accent-2: #2e5fac;
  --accent-soft: #ebf1ff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

/* ── Typography ───────────────────────────── */

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ── Layout ───────────────────────────── */

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 100px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

/* ── Badge ───────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-soft);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ── Steps ───────────────────────────── */

.steps {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
}

.step {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.step:last-child {
  margin-bottom: 0;
}

.step__num {
  width: 28px;
  height: 28px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.step__title {
  font-weight: 700;
  font-size: 0.9rem;
}

.step__desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Upload ───────────────────────────── */

.upload-panel {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 14px;
}

.upload-panel.drag-over {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ── File selected ───────────────────────────── */

.selected-file {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.selected-file.show {
  display: block;
}

/* ── CTA ───────────────────────────── */

.cta {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.cta:hover {
  background: var(--ink);
}

.cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Status ───────────────────────────── */

.status {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.status.error {
  display: block;
  background: var(--red-soft);
  color: var(--red);
}

.status.info {
  display: block;
  background: var(--amber-soft);
  color: var(--amber);
}

.status.success {
  display: block;
  background: var(--green-soft);
  color: var(--green);
}

/* ── Upsell (BELANGRIJK) ───────────────────────────── */

.upsell {
  margin-bottom: 24px;
}

.upsell-box {
  border: 1.5px solid var(--amber);
  background: var(--amber-soft);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.upsell-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.upsell-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.upsell-box p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.upsell-btn {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.upsell-btn:hover {
  background: #d97706;
}

/* ── Success ───────────────────────────── */

.success-screen {
  text-align: center;
  margin-top: 20px;
}

.success-screen__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 600px) {
  .wrap {
    padding: 28px 14px;
  }

  .card {
    padding: 20px;
  }
}
