/* ============================================================
   FISCALIGN — STYLE C (Calm Modern)
   Crème · sage · ocre brûlé · Inter + Crimson Pro
   ============================================================ */

/* ---- RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body { height: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }

/* Tous les paragraphes dans les pages éditoriales bénéficient
   d'une taille et d'un line-height généreux par défaut. */
.card p, article p { font-size: clamp(16px, 1.7vw, 17px); line-height: 1.7; color: var(--text-soft); }
.card p strong, article p strong { color: var(--text); font-weight: 600; }
.card ul, .card ol, article ul, article ol { font-size: clamp(15px, 1.6vw, 16px); line-height: 1.7; color: var(--text-soft); }
.card ul li, .card ol li, article ul li, article ol li { margin-bottom: 6px; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   VARIABLES — palette calm modern
   ============================================================ */
:root {
  /* Fonds — légèrement moins jaune que la V précédente */
  --bg: #faf7f1;              /* crème principal */
  --bg-gradient: linear-gradient(180deg, #faf7f1 0%, #ffffff 100%);
  --surface: #ffffff;          /* surfaces des cards */
  --surface-soft: #fefcf7;     /* surfaces hover doux */
  --surface-warm: #f5efe3;     /* surfaces secondaires */

  /* Texte — contraste augmenté pour meilleure lisibilité */
  --text: #1a1a17;             /* texte primaire — quasi noir, lisibilité maximale */
  --text-soft: #46423d;        /* texte secondaire — assez foncé pour rester lisible */
  --text-muted: #7a7468;       /* texte muet — encore lisible sur fond crème */
  --text-light: #b0a99c;       /* texte très atténué */

  /* Bordures */
  --border: rgba(26, 26, 23, 0.09);
  --border-strong: rgba(26, 26, 23, 0.16);
  --border-warm: rgba(200, 144, 96, 0.25);

  /* Accents — Sage (succès) + Ocre brûlé (action) */
  --accent: #c89060;           /* ocre brûlé — accent principal */
  --accent-dark: #a87749;      /* ocre brûlé foncé */
  --accent-soft: rgba(200, 144, 96, 0.1);

  --sage: #5d8865;             /* sage green — succès */
  --sage-soft: rgba(93, 136, 101, 0.1);
  --sage-strong: #4a7053;

  --warning: #c4823a;          /* ocre warning */
  --warning-soft: rgba(196, 130, 58, 0.1);

  --danger: #a8554c;            /* terracotta doux */
  --danger-soft: rgba(168, 85, 76, 0.1);

  /* Score tones */
  --score-excellent: #5d8865;
  --score-good: #8aa572;
  --score-warning: #c4823a;
  --score-risky: #b56b4d;
  --score-danger: #a8554c;

  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 3px rgba(42, 42, 38, 0.04), 0 4px 16px rgba(42, 42, 38, 0.04);
  --shadow-hover: 0 2px 6px rgba(42, 42, 38, 0.06), 0 8px 24px rgba(42, 42, 38, 0.06);
  --shadow-modal: 0 4px 12px rgba(42, 42, 38, 0.08), 0 20px 48px rgba(42, 42, 38, 0.12);
}

/* ---- BACKGROUND PATTERN (subtle) ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--bg-gradient);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px);
}
.center-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
.serif { font-family: 'Crimson Pro', Georgia, serif; }

.title-xl {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
}
.title-lg {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.2;
}
.title-md {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.label {
  display: inline-block;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.body {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--text-soft);
}
.body-sm {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
  color: var(--text-soft);
}
.caption {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--text-muted);
  line-height: 1.55;
}

.text-muted { color: var(--text-muted); }
.text-soft  { color: var(--text-soft); }
.text-accent { color: var(--accent); }
.text-sage  { color: var(--sage); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.6vw, 40px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.card + .card { margin-top: clamp(16px, 2.4vw, 24px); }

.card-warm {
  background: var(--surface-warm);
  border-color: var(--border-warm);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: clamp(14px, 1.7vw, 16px);
  padding: clamp(13px, 1.7vw, 16px) clamp(22px, 2.8vw, 30px);
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: #1c1c1a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(42, 42, 38, 0.15);
  opacity: 1;
}
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 144, 96, 0.3);
  opacity: 1;
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--surface-warm);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 16px;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--text); opacity: 1; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.badge-sage {
  color: var(--sage-strong);
  background: var(--sage-soft);
}
.badge-warning {
  color: var(--warning);
  background: var(--warning-soft);
}

/* ============================================================
   LIST ITEMS (issues)
   ============================================================ */
.list-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.5vw, 16px);
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--radius-md);
  background: var(--surface-warm);
  border: 1px solid var(--border);
  line-height: 1.65;
}
.list-item + .list-item { margin-top: 10px; }
.list-item.warning {
  background: var(--warning-soft);
  border-color: rgba(196, 130, 58, 0.2);
}
.list-item.critical {
  background: var(--danger-soft);
  border-color: rgba(168, 85, 76, 0.25);
}
.list-item.info {
  background: var(--sage-soft);
  border-color: rgba(93, 136, 101, 0.2);
}
.list-item .icon {
  font-size: clamp(18px, 2vw, 22px);
  min-width: 30px;
  flex-shrink: 0;
}
.list-item-body { flex: 1; min-width: 0; font-size: clamp(15px, 1.6vw, 17px); color: var(--text); line-height: 1.65; }
.list-item-title { font-weight: 600; color: var(--text); margin-bottom: 6px; font-size: clamp(16px, 1.7vw, 18px); }
.list-item-action {
  margin-top: 12px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-soft);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.list-item-legal {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: rgba(42, 42, 38, 0.04);
  padding: 3px 10px;
  border-radius: 6px;
  text-decoration: none;
}
.list-item-legal:hover { background: rgba(42, 42, 38, 0.08); color: var(--text); }

/* ============================================================
   LANDING
   ============================================================ */
.landing-hero {
  text-align: center;
  padding: clamp(40px, 8vh, 80px) 0 clamp(32px, 6vh, 56px);
}
.landing-hero .badge { margin-bottom: clamp(20px, 2vw, 28px); }
.landing-hero h1 { margin-bottom: clamp(18px, 2vw, 24px); }
.landing-hero h1 .highlight {
  color: var(--accent);
  font-style: italic;
}
.landing-hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  line-height: 1.6;
}
.landing-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: clamp(28px, 3vw, 40px);
}
.feature .feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: inline-block;
}
.feature .feature-title {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 20px);
  margin-bottom: 6px;
  color: var(--text);
}
.feature .feature-desc {
  font-size: clamp(14px, 1.4vw, 15px);
  color: var(--text-soft);
  line-height: 1.55;
}

.landing-stats {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  justify-content: center;
  flex-wrap: wrap;
  margin: clamp(40px, 7vh, 64px) 0;
  text-align: center;
}
.stat-value {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

.privacy-promise {
  background: var(--sage-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  margin: clamp(28px, 4vw, 40px) 0;
  border: 1px solid rgba(93, 136, 101, 0.18);
  text-align: center;
}
.privacy-promise .icon { font-size: 32px; display: inline-block; margin-bottom: 12px; }
.privacy-promise strong { color: var(--sage-strong); font-weight: 600; }

.footer {
  text-align: center;
  padding: clamp(24px, 4vw, 36px) 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer a { color: var(--text-soft); }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* ============================================================
   QUIZ — disclaimer view & quiz view
   ============================================================ */
.quiz-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: clamp(16px, 3vw, 24px);
}

.progress-container {
  position: sticky;
  top: 0;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  margin: -16px -16px 24px;
  padding-left: 16px;
  padding-right: 16px;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.progress-section-name { color: var(--accent); font-weight: 500; }
.progress-bar {
  height: 4px;
  background: var(--surface-warm);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-pill);
  width: 0%;
  transition: width 0.4s ease;
}

.question-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vh, 48px) 0;
}
.question-section-tag {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.question-text {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: clamp(20px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.question-multi-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: -12px;
  font-style: italic;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2vw, 22px);
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  text-align: left;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text);
  line-height: 1.45;
}
.option:hover {
  border-color: var(--accent);
  background: var(--surface-soft);
  transform: translateY(-1px);
}
.option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.option-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.15s;
}
.option.selected .option-letter {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.option-label { flex: 1; }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

/* Country input (Q2) */
.country-input-wrap { margin-top: 20px; }
.country-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2vw, 22px);
  font-family: inherit;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.country-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-soft);
}
.country-input::placeholder { color: var(--text-light); }

/* Disclaimer view */
.disclaimer-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface-warm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: background 0.15s;
}
.disclaimer-checkbox:hover { background: var(--surface-soft); }
.disclaimer-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

/* ============================================================
   RESULT
   ============================================================ */
.result-hero {
  text-align: center;
  padding: clamp(28px, 4vh, 48px) 0;
}
.score-display {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(96px, 16vw, 160px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -5px;
  color: var(--accent);
  display: inline-block;
}
.score-display.tone-success { color: var(--score-excellent); }
.score-display.tone-good { color: var(--score-good); }
.score-display.tone-warning { color: var(--score-warning); }
.score-display.tone-risky { color: var(--score-risky); }
.score-display.tone-danger { color: var(--score-danger); }
.score-out-of {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}
.score-gauge {
  width: 100%;
  max-width: 480px;
  margin: clamp(20px, 2.5vw, 28px) auto;
  height: 8px;
  background: var(--surface-warm);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.score-gauge-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: width 1.5s ease, background 1.5s ease;
}
.score-message { margin-top: clamp(16px, 2vw, 24px); }
.score-message-title {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.score-message-sub {
  color: var(--text-soft);
  font-size: clamp(15px, 1.8vw, 17px);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Category breakdown — visible avant unlock, score visible mais détails floutés */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
  margin-top: clamp(16px, 2vw, 24px);
}
.category-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2vw, 22px);
}
.category-tile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.category-tile-icon { font-size: 22px; }
.category-tile-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.3px;
}
.category-tile-pct {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -1px;
}
.category-tile-bar {
  margin-top: 10px;
  height: 4px;
  background: var(--surface-warm);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.category-tile-bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width 1s ease;
}
.category-tile-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================================
   EMAIL GATE — Blur overlay + modal
   ============================================================ */
.gated {
  position: relative;
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.gated * { user-select: none !important; }

/* Flou partiel : utilisé sur le category grid pour cacher
   les noms tout en gardant les scores visibles. */
.gate-partial {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.4s ease;
}
.unlocked .gate-partial { filter: none; user-select: auto; pointer-events: auto; }

.unlock-gate {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-warm) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  margin: clamp(24px, 3vw, 40px) 0;
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-soft);
}
.unlock-gate .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.unlock-gate h2 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.unlock-gate p.subtitle {
  color: var(--text-soft);
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
.unlock-form {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.email-input, .code-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  text-align: center;
  transition: border-color 0.15s;
}
.email-input:focus, .code-input:focus {
  outline: none;
  border-color: var(--accent);
}
.code-input {
  font-size: 22px;
  letter-spacing: 8px;
  font-weight: 600;
  font-family: 'Inter', monospace;
}
.unlock-error {
  color: var(--danger);
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
  min-height: 18px;
}
.unlock-perks {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 24px;
}
.unlock-perks li {
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.unlock-perks li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 600;
  flex-shrink: 0;
}
.unlock-trust {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.unlock-resend {
  margin-top: 16px;
  font-size: 13px;
}
.unlock-resend button {
  color: var(--accent);
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
}

.inbox-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-soft);
  margin: 6px 4px;
  transition: all 0.15s;
}
.inbox-link:hover { background: var(--surface-warm); }

/* ============================================================
   CTA RESERVER APPEL
   ============================================================ */
.cta-call {
  background: linear-gradient(135deg, #f5ead8 0%, #faf0e0 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  margin: clamp(24px, 3vw, 40px) 0;
  border: 1px solid var(--border-warm);
}
.cta-call h2 {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.cta-call p {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.55;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .landing-cta { flex-direction: column; }
  .landing-cta .btn { width: 100%; }
  .category-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   UTILITIES & HIDDEN
   ============================================================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 32px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   PRINT STYLESHEET (rapport PDF)
   ============================================================ */
@media print {
  body { background: white; color: black; }
  body::before { display: none; }
  .footer, .quiz-nav, .progress-container, .unlock-gate, .cta-call, .btn { display: none !important; }
  .gated { filter: none !important; opacity: 1 !important; pointer-events: auto !important; }
  .card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
  .list-item { break-inside: avoid; }
  .score-display { color: black !important; }
}
