/* ── Kraion shared design tokens ── */
:root {
  --violet: #5B4FE8;
  --violet-light: #9B59F5;
  --gradient: linear-gradient(135deg, #5B4FE8 0%, #9B59F5 100%);
}

/* ─── BOUTON ───────────────────────────────────────────────────────────── */
/* Seul et unique style de bouton du projet.                               */
/* Référence : "Commencer maintenant" dans la section hero de index.html.  */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #5B4FE8;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  line-height: normal;
  box-sizing: border-box;
  text-align: center;
}

.btn:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* ─── BADGE ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(91, 79, 232, 0.1);
  color: #5B4FE8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ─── CARD ───────────────────────────────────────────────────────────────── */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.card-featured {
  background: #ffffff;
  border: 1px solid #5B4FE8;
  border-radius: 12px;
  padding: 24px;
}

/* ─── INPUT ──────────────────────────────────────────────────────────────── */
.input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.input:focus {
  border-color: #5B4FE8;
  box-shadow: 0 0 0 3px rgba(91, 79, 232, 0.1);
}
