:root {
  --teal: #123F44;
  --teal-dark: #0C2C30;
  --orange: #DB6B2C;
  --gold: #F2A93B;
  --cream: #FBF3E3;
  --ink: #1B2E30;
  --muted: #5B6B6D;
  --radius: 22px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  padding-bottom: 96px; /* place pour le bouton CTA fixe */
  font-size: 18px;
  line-height: 1.5;
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 12px;
}

.hidden { display: none !important; }

/* --- Barre du haut --- */
.topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--teal-dark);
}
.topbar .logo { width: 36px; height: 36px; border-radius: 50%; }
.topbar .brand {
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

/* --- États --- */
.state { padding: 60px 24px; text-align: center; color: var(--muted); }

/* --- Hero --- */
.hero {
  background: var(--teal);
  color: var(--cream);
  padding: 32px 24px 40px;
}
.eyebrow-free {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 6px;
}
.hero h1 { font-size: 28px; color: #fff; }
.accroche { font-size: 19px; color: var(--cream); opacity: .92; margin-bottom: 20px; }

.media {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0,0,0,.15);
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media img, .media video { width: 100%; display: block; }
.media .placeholder {
  color: var(--cream);
  opacity: .7;
  font-size: 15px;
  padding: 20px;
  text-align: center;
}

/* --- Cartes "bulle" (motif du logo) --- */
.card {
  background: #fff;
  margin: 18px 16px;
  padding: 22px;
  border-radius: var(--radius);
  border-bottom-left-radius: 6px; /* pointe de bulle, discret */
  box-shadow: 0 2px 10px rgba(18,63,68,.08);
}
.card h2 { font-size: 20px; color: var(--teal); }

/* --- Étapes --- */
.steps ol { margin: 0; padding-left: 22px; }
.steps li { margin-bottom: 10px; }

/* --- Prix --- */
.price-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--teal);
  margin: 0;
}
.price-value .devise { font-size: 18px; font-weight: 500; color: var(--muted); }

/* --- Exemple --- */
.example .media { min-height: 160px; background: var(--cream); border: 2px dashed #D8C9A8; }
.example .media .placeholder { color: var(--muted); }

/* --- Confiance --- */
.trust {
  padding: 8px 24px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* --- CTA fixe --- */
.cta-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(219,107,44,.4);
}
.btn-fallback {
  display: inline-block;
  margin-top: 16px;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* Accessibilité : focus visible */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Respect du mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media (min-width: 640px) {
  body { max-width: 480px; margin: 0 auto; }
}
