/* ============================================================
   AMI — site vitrine
   Direction : doux & chaleureux, fond neutre comme l'app.
   Police Nunito (arrondie, identique à l'app).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

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

:root {
  /* Surfaces chaudes */
  --cream:        #F7F0E4;
  --cream-2:      #F1E7D6;
  --paper:        #FFFDF8;
  --paper-warm:   #FBF5EB;

  /* Bruns de marque */
  --clay:         #7D5A39;
  --clay-deep:    #5E4128;
  --espresso:     #3A2A1B;

  /* Accents */
  --terracotta:   #C57E45;
  --terracotta-2: #B96C33;
  --sand:         #E6C9A1;
  --honey:        #EBB770;

  /* Texte */
  --ink:          #2E2418;
  --muted:        #8A7A66;
  --muted-2:      #A2917C;

  /* Lignes & ombres */
  --line:         #E8DAC4;
  --line-soft:    #F0E5D3;
  --shadow-sm:    0 1px 2px rgba(74,52,28,.06), 0 2px 6px rgba(74,52,28,.05);
  --shadow-md:    0 4px 12px rgba(74,52,28,.08), 0 12px 30px rgba(74,52,28,.07);
  --shadow-lg:    0 10px 30px rgba(74,52,28,.10), 0 30px 70px rgba(74,52,28,.12);

  /* Police système, comme l'app (San Francisco / Roboto selon l'OS) */
  --font-system:  'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: var(--font-system);
  --font-body:    var(--font-system);

  --maxw: 1080px;
  --radius: 22px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: #FAF8F7;
  line-height: 1.6;
  font-size: 17px;
  position: relative;
  overflow-x: hidden;
}

/* Fond : dégradé chaud + halos organiques */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(235,183,112,.07), transparent 60%),
    radial-gradient(55% 45% at 100% 8%, rgba(197,126,69,.05), transparent 55%),
    linear-gradient(180deg, #FAF8F7 0%, #F4F1ED 100%);
}
/* Grain subtil */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--honey); color: var(--espresso); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.3rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
a { color: var(--clay); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta-2); }

img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--terracotta-2);
  margin-bottom: .9rem;
  display: inline-block;
}

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: linear-gradient(180deg, var(--clay) 0%, var(--clay-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(94,65,40,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(94,65,40,.34), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-ghost {
  background: var(--paper);
  color: var(--clay-deep);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { color: var(--clay-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--sand); }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: .85rem 0;
  background: rgba(250,248,247,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; color: var(--espresso); }
.brand-logo { height: 30px; width: auto; display: block; }
.brand-name {
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: .02em;
  color: var(--espresso);
}
.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { color: var(--clay-deep); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--terracotta-2); }
.nav .btn { padding: .6rem 1.15rem; font-size: .92rem; }
/* Le bouton garde son texte blanc (sinon .nav a l'emporte → texte illisible) */
.nav a.btn-primary, .nav a.btn-primary:hover { color: #fff; }
.nav a.btn-ghost, .nav a.btn-ghost:hover { color: var(--clay-deep); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--clay-deep);
  padding: .42rem 1rem .42rem .55rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero-tagline .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4FA06A;
  box-shadow: 0 0 0 4px rgba(79,160,106,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--clay); }
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 30ch;
  margin-bottom: 2rem;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-note { margin-top: 1.4rem; font-size: .88rem; color: var(--muted-2); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { width: 1rem; height: 1rem; color: var(--clay); flex: none; }

/* décor */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.paw-deco {
  position: absolute;
  color: var(--sand);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

/* ---------- CAPTURE DE L'APP (hero) ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; z-index: 1; }
.hero-visual .blob-1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 35% 30%, rgba(235,183,112,.55), rgba(197,126,69,.25) 60%, transparent 72%);
  top: -8%; left: 50%; transform: translateX(-55%);
}
.app-shot {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 100%;
  height: auto;
}

/* ---------- BANDEAU CONFIANCE ---------- */
.trust {
  background: transparent;
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem;
}
.trust-label { font-size: .82rem; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .95rem; font-weight: 600; color: var(--clay-deep); }
.trust-item svg { width: 1.15rem; height: 1.15rem; color: var(--terracotta); flex: none; }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: .7rem; margin-bottom: 0; }

/* Mascotte Willi */
.willi { display: block; width: 104px; height: auto; margin: 0 auto .6rem; }
.willi-cta { width: 116px; margin-bottom: .4rem; }

/* ---------- FEATURES (bento doux) ---------- */
.features-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.feature {
  grid-column: span 2;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .25s ease, border-color .22s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.feature.wide { grid-column: span 3; }
.feature-icon {
  width: 50px; height: 50px; border-radius: 15px;
  background: linear-gradient(150deg, var(--paper-warm), #F4E7D2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--clay);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

/* ---------- ÉTAPES ---------- */
.steps {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.step {
  position: relative;
  background: linear-gradient(165deg, var(--paper) 0%, var(--paper-warm) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600; font-style: italic;
  color: var(--terracotta);
  line-height: 1; margin-bottom: .8rem; display: block;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* ---------- APERÇU DE L'APP ---------- */
.shots {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  align-items: start;
}
.shot { margin: 0; text-align: center; }
.shot img {
  width: 240px; max-width: 100%; height: auto; margin: 0 auto;
  transition: transform .3s ease;
}
.shot:hover img { transform: translateY(-6px); }
.shot figcaption {
  margin-top: 1.1rem; color: var(--muted); font-size: .92rem;
  max-width: 26ch; margin-left: auto; margin-right: auto; line-height: 1.45;
}

/* ---------- PREMIUM ---------- */
.premium-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.premium {
  position: relative;
  background: linear-gradient(155deg, var(--clay-deep) 0%, var(--espresso) 100%);
  border-radius: 30px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  color: #F6ECDC;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.premium::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(235,183,112,.30), transparent 60%),
    radial-gradient(40% 55% at 0% 100%, rgba(197,126,69,.28), transparent 60%);
}
.premium-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.premium .eyebrow { color: var(--honey); }
.premium h2 { color: #FFF8EC; margin-bottom: .8rem; }
.premium h2 em { font-style: italic; font-weight: 400; color: var(--honey); }
.premium-sub { color: #E6D6C0; opacity: .9; margin-bottom: 0; font-size: 1.05rem; }
.premium-list { list-style: none; display: grid; gap: .85rem; }
.premium-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; color: #F4EADB; }
.premium-list svg { width: 1.3rem; height: 1.3rem; color: var(--honey); flex: none; margin-top: .1rem; }
.premium-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(235,183,112,.16); color: var(--honey);
  border: 1px solid rgba(235,183,112,.3);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem .85rem; border-radius: 999px; margin-top: 1.6rem;
}
.premium-price {
  margin-top: 1.6rem; font-size: 1.05rem; font-weight: 700; color: #FFF8EC;
}
.premium-price span { font-weight: 400; color: #E6D6C0; opacity: .85; font-size: .92rem; }
.premium-cta {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.1rem;
  background: var(--honey); color: var(--espresso);
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
}
.premium-cta:hover { color: var(--espresso); background: #F2C683; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.24); }
.premium-cta svg { width: 1.1em; height: 1.1em; }

/* ---------- FAQ ---------- */
.faq { max-width: 740px; margin: 0 auto; padding: 0 1.5rem; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0 1.3rem;
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--sand); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  color: var(--espresso);
  padding: 1.15rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  width: 1.4rem; height: 1.4rem; flex: none; color: var(--clay);
  transition: transform .25s ease;
}
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: .98rem; padding-bottom: 1.2rem; margin: 0; }

/* ---------- CTA FINAL ---------- */
.cta-band { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.cta-card {
  max-width: 880px; margin: 0 auto; padding: 0 1.5rem; text-align: center;
}
.cta-inner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(235,183,112,.20), transparent 60%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: .8rem; }
.cta-inner p { color: var(--muted); max-width: 46ch; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.waitlist { display: flex; gap: .6rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.waitlist input {
  flex: 1; min-width: 220px;
  font-family: var(--font-body); font-size: 1rem;
  padding: .9rem 1.2rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper-warm); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.waitlist input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(125,90,57,.12); }
.waitlist .btn { flex: none; }

/* CTA final, variante « bande colorée » */
.cta-filled .cta-inner { background: linear-gradient(155deg, var(--clay-deep) 0%, var(--espresso) 100%); border: none; box-shadow: var(--shadow-lg); }
.cta-filled .cta-inner::before { background: radial-gradient(50% 80% at 50% 0%, rgba(235,183,112,.28), transparent 60%); }
.cta-filled .cta-inner .eyebrow { color: var(--honey); }
.cta-filled .cta-inner h2 { color: #FFF8EC; }
.cta-filled .cta-inner p { color: #E6D6C0; }
.cta-filled .waitlist input { background: rgba(255,255,255,.96); border-color: transparent; }
.cta-filled .waitlist .btn-primary { background: var(--honey); color: var(--espresso); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.cta-filled .waitlist .btn-primary:hover { background: #F2C683; color: var(--espresso); }

/* Message de confirmation / erreur de la liste d'attente */
.waitlist-msg { width: 100%; margin: 1rem auto 0; font-size: .95rem; font-weight: 600; }
.waitlist-msg.is-ok { color: #2F8A57; }
.waitlist-msg.is-err { color: var(--terracotta-2); }
.cta-filled .waitlist-msg.is-ok { color: #BFE9CF; }
.cta-filled .waitlist-msg.is-err { color: var(--honey); }

/* ---------- FOOTER ---------- */
.footer {
  background: #F4F1ED;
  border-top: 1px solid #EBE7E1;
  padding: 3rem 0 2.2rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.6rem 2rem; justify-content: space-between; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .92rem; }
.footer-brand .footer-wordmark { font-weight: 700; font-size: 1.05rem; color: var(--clay-deep); }
.footer-brand .footer-logo { height: 24px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { color: var(--clay-deep); font-size: .92rem; font-weight: 500; }
.footer-links a:hover { color: var(--terracotta-2); }
.footer-copy {
  width: 100%; text-align: center; padding-top: 1.5rem; margin-top: .4rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2); font-size: .85rem;
}

/* ============================================================
   PAGE PREMIUM
   ============================================================ */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 1rem; }
.price-head { max-width: 680px; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); text-align: center; }
.price-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.price-head h1 em { font-style: italic; font-weight: 400; color: var(--clay); }
.price-lead { color: var(--muted); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 1.4rem; }
.price-lead strong { color: var(--clay-deep); font-weight: 700; }
.price-from {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--clay-deep); font-size: .9rem; font-weight: 600;
  padding: .45rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* Comparatif gratuit / premium */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  max-width: 880px; margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.compare-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.compare-card--pro {
  background: linear-gradient(155deg, var(--clay-deep) 0%, var(--espresso) 100%);
  border-color: transparent; color: #F4EADB; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.compare-card--pro::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(45% 60% at 100% 0%, rgba(235,183,112,.28), transparent 60%);
}
.compare-card--pro > * { position: relative; z-index: 1; }
.compare-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.compare-top h2 { font-size: 1.5rem; }
.compare-card--pro .compare-top h2 { color: #FFF8EC; }
.compare-price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--clay); }
.compare-price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.compare-card--pro .compare-price { color: var(--honey); }
.compare-card--pro .compare-price small { color: #E6D6C0; }
.compare-sub { font-size: .92rem; color: var(--muted); margin: .5rem 0 1.2rem; }
.compare-card--pro .compare-sub { color: #E6D6C0; opacity: .9; }
.compare-list { list-style: none; display: grid; gap: .75rem; }
.compare-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .97rem; color: var(--ink); }
.compare-card--pro .compare-list li { color: #F4EADB; }
.compare-list svg { width: 1.15rem; height: 1.15rem; color: var(--terracotta); flex: none; margin-top: .15rem; }
.compare-card--pro .compare-list svg { color: var(--honey); }
.compare-list strong { font-weight: 700; }

/* Détail des avantages */
.benefits-section { max-width: 820px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.benefits-section .section-head { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.benefit-ic {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  background: linear-gradient(150deg, var(--paper-warm), #F4E7D2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
}
.benefit-ic svg { width: 26px; height: 26px; }
.benefit h3 { margin-bottom: .3rem; }
.benefit p { color: var(--muted); font-size: .94rem; margin-bottom: 0; }

/* Plans */
.plans-section { max-width: 720px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 560px; margin: 0 auto; }
.plan {
  position: relative; text-align: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.plan--featured { border-color: var(--clay); box-shadow: var(--shadow-md); }
.plan-tag {
  position: absolute; top: -.7rem; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .04em; padding: .25rem .7rem; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); font-weight: 700; }
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--espresso); }
.plan-price small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.plan-note { font-size: .86rem; color: var(--muted); }
.plans-hint { text-align: center; color: var(--muted-2); font-size: .85rem; margin-top: 1.4rem; }

/* CTA premium */
.price-cta {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 30px; padding: clamp(2.2rem, 5vw, 3.4rem) 1.5rem;
  box-shadow: var(--shadow-md);
}
.price-cta h2 { margin-bottom: .7rem; }
.price-cta p { color: var(--muted); max-width: 44ch; margin: 0 auto 1.6rem; font-size: 1.05rem; }

@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGES LÉGALES (partagent ce CSS)
   ============================================================ */
.legal { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 1rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.legal h2 { font-size: 1.45rem; margin-top: 2.4rem; margin-bottom: .9rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: .5rem; }
.legal p { color: var(--ink); }
.legal .legal-meta { color: var(--muted); font-size: .92rem; margin-bottom: 1.8rem; }
.legal ul, .legal ol { margin: 0 0 1rem 1.3rem; color: var(--ink); }
.legal li { margin-bottom: .4rem; }
.legal a { font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--sand); }
.legal a:hover { text-decoration-color: var(--terracotta); }
.legal .note {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terracotta);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  font-size: .95rem; color: var(--muted);
  margin: 1.6rem 0;
}
.legal .note p:last-child { margin-bottom: 0; }
.legal .todo {
  background: #FBEBC8; border-radius: 5px; padding: .05rem .4rem;
  font-weight: 700; color: #8A5A12; font-size: .92em;
}
.legal table { border-collapse: collapse; width: 100%; margin: 1rem 0 1.6rem; font-size: .93rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: .6rem .75rem; text-align: left; vertical-align: top; }
.legal th { background: var(--paper-warm); color: var(--espresso); font-family: var(--font-body); }
.legal .back-link { display: inline-block; margin: 2rem 0 .5rem; font-weight: 600; text-decoration: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(79,160,106,.35); } 50% { box-shadow: 0 0 0 6px rgba(79,160,106,0); } }
@keyframes floatPaw { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(calc(var(--r,0deg) + 6deg)); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* Chargement du hero (staggered) */
.hero .anim { opacity: 0; transform: translateY(18px); animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero .anim.a1 { animation-delay: .05s; }
.hero .anim.a2 { animation-delay: .15s; }
.hero .anim.a3 { animation-delay: .25s; }
.hero .anim.a4 { animation-delay: .35s; }
.hero .anim.a5 { animation-delay: .30s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-lead { max-width: 46ch; margin-left: auto; margin-right: auto; }
  .hero-cta-row, .hero-note { justify-content: center; }
  .premium-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature.wide { grid-column: span 3; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { gap: 1.1rem; }
  .nav a:not(.btn) { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; gap: 2.6rem; max-width: 360px; }
  .shot img { width: 260px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 440px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature, .feature.wide { grid-column: span 1; }
  .waitlist input { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .anim { opacity: 1; transform: none; }
}
