/* ==========================================================================
   Éveil des Étoiles — Refonte « Lumière du matin »
   Univers petite enfance : lumière chaude de l'aube, étoiles dessinées à la
   main, formes douces et matières naturelles. Chaleureux mais crédible.
   CSS pur, sans pipeline de build.
   ========================================================================== */

:root {
  /* Lumière chaude */
  --cream:       #FCF6EA;
  --cream-2:     #F6EEDC;
  --surface:     #FFFFFF;

  /* Étoiles (or) + lavande (secondaire de marque, repris du logo) */
  --gold:        #ECB740;
  --gold-dark:   #C8901F;
  --gold-soft:   #F8E7B4;
  --lavande:     #B3A0D6;
  --lavande-dark:#7C66AE;
  --lavande-soft:#ECE6F7;
  /* Alias de compatibilité (anciennes règles « apricot/peach » → lavande) */
  --apricot:      var(--lavande);
  --apricot-dark: var(--lavande-dark);
  --peach:        #DCD0EE;
  --peach-soft:   var(--lavande-soft);

  /* Verdure (matière naturelle, jouet en bois, croissance) */
  --sage:        #9FC9A8;
  --sage-soft:   #E6F1E7;
  --green:       #6FAE84;
  --green-dark:  #4E8E69;
  --forest:      #2F4A39;   /* footer : vert profond, chaleureux */
  --forest-2:    #395A45;

  /* Texte (encre verte chaude, pas noir techno) */
  --text:        #2F3A33;
  --text-muted:  #6C7468;
  --on-dark:     #EFE9DB;
  --on-dark-mut: rgba(239, 233, 219, .78);

  --border:      #ECE0CB;
  --border-soft: rgba(79, 90, 70, .12);

  --radius:    24px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  /* Ombres chaudes (teintées, pas grises) */
  --shadow-sm: 0 2px 8px rgba(120, 92, 40, .07);
  --shadow:    0 14px 32px rgba(120, 92, 40, .11), 0 4px 10px rgba(120, 92, 40, .06);
  --shadow-lg: 0 30px 64px rgba(95, 72, 38, .17);

  --max-width: 1180px;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Étoiles dessinées (data-URI), réutilisables en fond */
  --star-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.6l2.6 5.5 6 .9-4.3 4.2 1 6L12 20.4 6.7 19.2l1-6-4.3-4.2 6-.9z' fill='%23EFB948'/%3E%3C/svg%3E");
  --star-cream: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.6l2.6 5.5 6 .9-4.3 4.2 1 6L12 20.4 6.7 19.2l1-6-4.3-4.2 6-.9z' fill='%23F4E8D0'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 540;
  letter-spacing: -.005em;
  font-optical-sizing: auto;
  color: var(--text);
}
h1 { font-size: clamp(2.3rem, 4.8vw, 3.7rem); font-weight: 560; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.32rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

::selection { background: var(--gold); color: var(--text); }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; overflow: hidden; }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.lead { font-size: 1.18rem; line-height: 1.6; color: var(--text-muted); max-width: 62ch; }
.section-head { max-width: 64ch; margin: 0 auto 3.5rem; text-align: center; position: relative; z-index: 2; }
.section-head .lead { margin-inline: auto; }

/* Eyebrow — petite étoile dessinée (signature de marque) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body);
  font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--apricot-dark); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 16px; height: 16px;
  background: var(--star-gold) center/contain no-repeat;
}

/* mot mis en lumière */
.hero h1 em {
  font-style: italic;
  color: var(--apricot-dark);
  position: relative;
}

/* ===== Champ d'étoiles dessinées & animées ===== */
.sky { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; color: var(--gold); }
.sky--dark { color: #F4E8CF; }
.star {
  position: absolute; display: block;
  color: inherit;
  filter: drop-shadow(0 1px 2px rgba(206, 158, 44, .28));
  animation-name: star-float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}
.sky--dark .star { filter: drop-shadow(0 0 6px rgba(244, 232, 207, .5)); }
.star__in {
  display: block; width: 100%; height: 100%; transform-origin: center;
  animation-name: star-twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.star svg { display: block; width: 100%; height: 100%; }
/* les scintillements (4 branches) tournent lentement */
.star.is-sparkle svg { animation: star-spin 18s linear infinite; transform-origin: center; }

@keyframes star-float  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes star-twinkle { 0%, 100% { opacity: .25; transform: scale(.78); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes star-spin   { to { transform: rotate(360deg); } }

/* ===== Boutons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.7rem; border-radius: var(--radius-pill);
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #F4CE63);
  color: #5a4410;
  box-shadow: 0 8px 22px rgba(236, 183, 64, .34);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(236, 183, 64, .46); }
.btn-soft { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-soft:hover { border-color: var(--apricot); color: var(--apricot-dark); }
.btn-green { background: var(--green-dark); color: #fff; box-shadow: 0 8px 20px rgba(78, 142, 105, .28); }
.btn-green:hover { background: #437b5b; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--apricot); color: var(--apricot-dark); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252, 246, 234, .85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 560; font-size: 1.12rem; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .96rem; font-weight: 600; color: var(--text); position: relative; padding: .25rem 0; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--apricot); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--apricot-dark); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-actions .btn { padding: .6rem 1.2rem; font-size: .92rem; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--text); }
.nav-cta-mobile { display: none; }

/* ===== Hero : lumière du matin ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(168deg, #ECE7F5 0%, #E7F0E8 46%, var(--cream) 100%);
}
.hero::before { /* soleil levant doré */
  content: ""; position: absolute; top: -12%; right: -6%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,183,64,.5), rgba(179,160,214,.16) 45%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center;
  padding: 5.5rem 0 6rem;
}
.hero__copy { max-width: 42ch; }
.hero h1 { margin-bottom: 1.25rem; }
.hero__lead { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__trust { display: flex; align-items: center; gap: .6rem; margin-top: 2rem; font-size: .92rem; color: var(--text-muted); }
.hero__trust .stars { color: var(--gold-dark); letter-spacing: 2px; }

.hero__visual { position: relative; }
.hero__visual::before { /* étoile autocollant dessinée */
  content: ""; position: absolute; top: -22px; right: -10px; z-index: 3;
  width: 64px; height: 64px; background: var(--star-gold) center/contain no-repeat;
  transform: rotate(-12deg); filter: drop-shadow(0 6px 10px rgba(206,158,44,.3));
}
.hero__photo {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
  border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__chip {
  position: absolute; left: -1.25rem; bottom: 1.75rem; z-index: 4;
  background: var(--surface); color: var(--text);
  border-radius: 18px; padding: 1rem 1.25rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .8rem;
}
.hero__chip .num { font-family: var(--display); font-size: 1.7rem; font-weight: 600; color: var(--apricot-dark); line-height: 1; }
.hero__chip .lbl { font-size: .82rem; color: var(--text-muted); line-height: 1.25; }
.hero__chip .star { width: 26px; height: 26px; background: var(--star-gold) center/contain no-repeat; flex: 0 0 auto; }

/* ===== Icônes ===== */
.ic { width: 30px; height: 30px; display: block; }

/* ===== Piliers : constellation douce (signature) ===== */
.constellation { position: relative; }
.constellation__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
.constellation__lines path { fill: none; stroke: var(--sage); stroke-width: 2.5; stroke-dasharray: 2 12; stroke-linecap: round; opacity: .7; }
.pillars { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; }
.pillars > :nth-child(1) { margin-top: 2.5rem; }
.pillars > :nth-child(3) { margin-top: 4rem; }

.pillar {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.25rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar__star {
  width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 1.1rem;
  border-radius: 20px; color: var(--apricot-dark);
  background: var(--peach-soft);
}
.pillars > :nth-child(2) .pillar__star { color: var(--green-dark); background: var(--sage-soft); }
.pillars > :nth-child(3) .pillar__star { color: var(--gold-dark); background: rgba(244,194,75,.2); }
.pillar h3 { margin-bottom: .5rem; }
.pillar p { color: var(--text-muted); font-size: .98rem; margin: 0; }

/* ===== Sections colorées douces ===== */
.section--paper { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section--sage  { background: linear-gradient(180deg, #E9F3EA, #E0EEE2); }
.section--peach { background: linear-gradient(180deg, #EFEAF8, #E3D9F2); }

/* ===== Offres ===== */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; }
.offer {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.25rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.offer.is-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--lavande), var(--gold)) border-box;
  box-shadow: var(--shadow);
}
.offer__flag {
  position: absolute; top: -.9rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .35rem;
  background: linear-gradient(135deg, var(--gold), #F4CE63); color: #5a4410;
  font-size: .78rem; font-weight: 800; letter-spacing: .02em;
  padding: .35rem 1rem .35rem .8rem; border-radius: var(--radius-pill); white-space: nowrap;
  box-shadow: 0 6px 16px rgba(236, 183, 64, .38);
}
.offer__flag::before { content: ""; width: 14px; height: 14px; background: var(--star-cream) center/contain no-repeat; }
.offer .badge { margin-bottom: 1rem; }
.offer h3 { margin-bottom: .55rem; }
.offer__duration { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .95rem; color: var(--apricot-dark); margin: 0 0 .9rem; }
.offer__duration .star { width: 16px; height: 16px; background: var(--star-gold) center/contain no-repeat; }
.offer__text { color: var(--text-muted); font-size: .97rem; flex-grow: 1; }
.offer .btn { margin-top: 1.5rem; }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .85rem; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  background: var(--sage-soft); color: var(--green-dark);
}
.badge.is-secondary { background: var(--peach-soft); color: var(--apricot-dark); }
.badge.is-accent { background: rgba(244, 194, 75, .25); color: var(--gold-dark); }

/* ===== Témoignages ===== */
.testimonials { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial .stars { color: var(--gold-dark); letter-spacing: 3px; margin-bottom: .9rem; }
.testimonial blockquote { margin: 0; }
.testimonial p { font-size: 1.02rem; color: var(--text); font-style: italic; margin: 0; }
.testimonial .author { display: block; font-family: var(--display); font-weight: 560; color: var(--green-dark); margin-top: 1.1rem; font-style: normal; }

/* ===== Valeurs ===== */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 2; }
.value {
  text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value__icon { width: 64px; height: 64px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 20px; color: var(--green-dark); background: var(--sage-soft); }
.values > :nth-child(1) .value__icon { color: var(--apricot-dark); background: var(--peach-soft); }
.values > :nth-child(3) .value__icon { color: var(--gold-dark); background: rgba(244,194,75,.2); }
.value h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.value p { color: var(--text-muted); font-size: .94rem; margin: 0; }

/* ===== CTA ===== */
.cta { position: relative; z-index: 2; text-align: center; max-width: 56ch; margin: 0 auto; }
.cta p { color: #5f5577; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta .hero__actions { justify-content: center; }

/* ===== Hero de page (sous-pages) ===== */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 4.75rem 0 3.75rem;
  background: linear-gradient(170deg, #ECE7F5 0%, #E7F0E8 55%, var(--cream) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .lead { margin-inline: auto; }

/* ===== Lignes alternées (accompagnement) ===== */
.feature-rows { display: grid; gap: 4rem; max-width: 1000px; margin-inline: auto; }
.feature-row { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: center; }
.feature-row:nth-child(even) { grid-template-columns: 1fr 320px; }
.feature-row:nth-child(even) .feature-row__media { order: 2; }

.feature-row__media {
  position: relative; aspect-ratio: 1 / 1; border-radius: 28px;
  display: grid; place-items: center; overflow: hidden;
  background: var(--lavande-soft);
}
.feature-row__media.m2 { background: var(--sage-soft); }
.feature-row__media.m3 { background: var(--gold-soft); }
.feature-row__media::after { /* étoile déco */
  content: ""; position: absolute; top: 14%; right: 16%;
  width: 28px; height: 28px; background: var(--star-gold) center/contain no-repeat;
  transform: rotate(-10deg); opacity: .8;
}
.feature-row__icon {
  width: 96px; height: 96px; display: grid; place-items: center; border-radius: 50%;
  background: #fff; color: var(--lavande-dark); box-shadow: var(--shadow-sm);
}
.feature-row__media.m2 .feature-row__icon { color: var(--green-dark); }
.feature-row__media.m3 .feature-row__icon { color: var(--gold-dark); }
.feature-row__icon .ic { width: 46px; height: 46px; }
.feature-row__body h2 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); }
.feature-row__body > p { color: var(--text-muted); }

.value-add {
  margin-top: 1.25rem; background: var(--surface);
  border: 1px solid var(--border); border-left: 4px solid var(--lavande);
  border-radius: 14px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
}
.feature-row:nth-child(2) .value-add { border-left-color: var(--green); }
.feature-row:nth-child(3) .value-add { border-left-color: var(--gold); }
.value-add__head { display: flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.value-add__head .ic { width: 20px; height: 20px; color: var(--gold-dark); }
.value-add p { margin: 0; color: var(--text-muted); font-size: .96rem; }

/* ===== Page « Qui suis-je ? » ===== */
.prose { max-width: 70ch; }
.prose p { color: var(--text-muted); margin-bottom: 1.1rem; line-height: 1.78; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 700; }

.about-intro {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: var(--lavande-soft); border-radius: 22px; padding: 2.25rem 2.5rem;
  position: relative;
}
.about-intro p { margin: 0; font-size: 1.2rem; line-height: 1.6; color: var(--text); }

.about-split { display: grid; grid-template-columns: .85fr 1.6fr; gap: 3rem; align-items: start; max-width: 1020px; margin-inline: auto; }
.about-split__head h2 { position: sticky; top: 100px; margin: 0; }
.about-split__head .eyebrow { margin-bottom: .5rem; }

.approach { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.approach-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.approach-card__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1rem; color: var(--lavande-dark); background: var(--lavande-soft); }
.approach > :nth-child(2) .approach-card__icon { color: var(--green-dark); background: var(--sage-soft); }
.approach > :nth-child(3) .approach-card__icon { color: var(--gold-dark); background: var(--gold-soft); }
.approach > :nth-child(4) .approach-card__icon { color: var(--lavande-dark); background: var(--lavande-soft); }
.approach-card h3 { margin-bottom: .45rem; }
.approach-card p { color: var(--text-muted); margin: 0; font-size: .97rem; line-height: 1.65; }

.about-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem; margin: 0 0 1.75rem; font-weight: 600; }
.about-contact a { color: var(--lavande-dark); }
.about-contact a:hover { color: var(--gold-dark); }

/* ===== Offres & Tarifs (liste) ===== */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan.is-featured { border: 2px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(135deg, var(--lavande), var(--gold)) border-box; box-shadow: var(--shadow); }
.plan .badge { align-self: flex-start; margin-bottom: .8rem; }
.plan h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.plan__price { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--green-dark); margin-bottom: .9rem; }
.plan__meta { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .45rem; font-size: .9rem; color: var(--text-muted); }
.plan__meta li { display: flex; justify-content: space-between; gap: .75rem; }
.plan__meta strong { color: var(--text); font-weight: 600; text-align: right; }
.plan__incl { list-style: none; padding: 1rem 0 0; margin: 0 0 1.25rem; border-top: 1px dashed var(--border); display: grid; gap: .5rem; font-size: .92rem; flex-grow: 1; }
.plan__incl li { display: flex; gap: .55rem; align-items: flex-start; }
.plan__incl li::before { content: "✓"; color: var(--green-dark); font-weight: 800; }
.plan .btn { margin-top: auto; }
.tarif-note { text-align: center; color: var(--text-muted); font-size: .92rem; margin: 2rem 0 0; }

/* grille comparative */
.compare-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 720px; }
.compare th, .compare td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .93rem; vertical-align: top; }
.compare thead th { background: var(--lavande-soft); font-family: var(--display); font-weight: 600; color: var(--text); }
.compare tbody th { font-weight: 700; color: var(--text); background: #FBF9F4; white-space: nowrap; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }

/* ===== Détail offre ===== */
.detail-badges { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.25rem; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.panel__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.panel__head .ic { width: 26px; height: 26px; color: var(--lavande-dark); flex: 0 0 auto; }
.panel__head h3 { margin: 0; font-size: 1.2rem; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; }
.checklist li::before { content: "✓"; color: var(--green-dark); font-weight: 800; margin-top: .05rem; }
.checklist--cols { grid-template-columns: 1fr 1fr; gap: .6rem 1.75rem; }

.arrow-list, .star-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.arrow-list li, .star-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text); }
.arrow-list li::before { content: "→"; color: var(--lavande-dark); font-weight: 800; }
.star-list li::before { content: ""; width: 16px; height: 16px; flex: 0 0 auto; margin-top: .25rem; background: var(--star-gold) center/contain no-repeat; }

.hero-kicker { font-family: var(--display); font-style: italic; color: var(--lavande-dark); font-size: 1.18rem; margin-bottom: .4rem; }
.price-block { text-align: center; }
.price-tag { font-family: var(--display); font-size: 2.6rem; font-weight: 600; color: var(--green-dark); line-height: 1; }
.price-tag small { display: block; font-family: var(--body); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-top: .4rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 1.5rem; margin-bottom: .35rem; }
.form-card > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
.form-row { margin-bottom: 1.1rem; }
.form-card label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .4rem; color: var(--text); }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; padding: .8rem .95rem; font: inherit; color: var(--text);
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: #b7af9f; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { outline: none; border-color: var(--lavande); box-shadow: 0 0 0 3px rgba(179, 160, 214, .28); }
.form-card textarea { min-height: 150px; resize: vertical; }
.form-card .btn { margin-top: .5rem; }
.form-row ul { list-style: none; padding: 0; margin: .35rem 0 0; color: #c0392b; font-size: .85rem; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; border: 1px solid; }
.alert-success { background: var(--sage-soft); border-color: var(--green); color: #2f5a40; }

.contact-aside { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.contact-aside h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.contact-aside > p { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.25rem; }
.contact-row { display: flex; gap: .8rem; align-items: center; margin: .9rem 0; }
.contact-row .ic-box { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--lavande-soft); color: var(--lavande-dark); flex: 0 0 auto; }
.contact-row .ic-box .ic { width: 22px; height: 22px; }
.contact-row a { font-weight: 600; }
.contact-aside .btn { width: 100%; margin-top: 1.25rem; }

/* ===== Diagnostic (wizard) ===== */
.diag-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .6rem; }
.diag-list li { display: flex; gap: .65rem; align-items: baseline; padding: .8rem 1.1rem; background: var(--lavande-soft); border-radius: var(--radius-sm); }
.diag-list .n { font-family: var(--display); font-weight: 700; color: var(--lavande-dark); flex: 0 0 auto; }

.wizard { max-width: 760px; margin: 0 auto; }
.wizard__head { text-align: center; margin-bottom: 1.75rem; }
.wizard__head h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: .5rem; }
.wizard__intro { color: var(--text-muted); max-width: 64ch; margin: 0 auto; }
.wizard__progress { background: #ECE5D6; border-radius: 999px; height: 10px; overflow: hidden; margin-bottom: .7rem; }
.wizard__bar { height: 100%; background: linear-gradient(90deg, var(--lavande), var(--gold)); border-radius: 999px; transition: width .4s ease; }
.wizard__meta { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--text-muted); font-weight: 600; margin-bottom: 1.5rem; }
.question { border: 0; padding: 0; margin: 0 0 1.85rem; }
.question > p { font-weight: 700; margin-bottom: .8rem; font-size: 1.05rem; }
.choices { display: grid; gap: .6rem; }
.choice { display: flex; align-items: center; gap: .7rem; padding: .9rem 1.1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.choice:hover { border-color: var(--lavande); }
.choice input { width: auto; accent-color: var(--lavande-dark); }
.choice:has(input:checked) { border-color: var(--lavande-dark); background: var(--lavande-soft); box-shadow: 0 0 0 3px rgba(179, 160, 214, .18); }
.wizard__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }

.score-ring { font-family: var(--display); font-size: 3.2rem; font-weight: 600; color: var(--green-dark); line-height: 1; }
.result-level { display: inline-block; padding: .5rem 1.3rem; border-radius: 999px; font-weight: 700; margin-top: .6rem; }
.result-offer { margin-top: 1.5rem; text-align: left; }

/* ===== Pages légales ===== */
.legal-content h2 { font-size: 1.3rem; margin: 1.75rem 0 .5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ (accordéon) ===== */
.accordion { max-width: 820px; margin: 0 auto; display: grid; gap: .85rem; }
.accordion details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 1.4rem; box-shadow: var(--shadow-sm); transition: border-color .2s; }
.accordion details[open] { border-color: var(--lavande); }
.accordion summary { cursor: pointer; list-style: none; padding: 1.15rem 0; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--lavande-dark); transition: transform .2s; }
.accordion details[open] summary { color: var(--lavande-dark); }
.accordion details[open] summary::after { content: "−"; }
.accordion .answer { padding: 0 0 1.25rem; color: var(--text-muted); line-height: 1.7; }

.steps { display: grid; gap: 1rem; max-width: 800px; margin: 0 auto; }
.step { display: flex; gap: 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem 1.4rem; box-shadow: var(--shadow-sm); }
.step__num { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--lavande), var(--gold)); }
.step h3 { font-size: 1.08rem; margin: 0 0 .2rem; }
.step p { margin: 0; color: var(--text-muted); font-size: .95rem; }

/* ===== Grille comparative ===== */
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.25rem; }
.compare td .mini { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.compare td .mini li { display: flex; gap: .4rem; align-items: flex-start; }
.compare td .mini li::before { content: "✓"; color: var(--green-dark); font-weight: 800; }
.compare .row-tarif th, .compare .row-tarif td { background: var(--gold-soft); font-weight: 700; color: var(--text); font-size: 1rem; }
.guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.guide-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.85rem; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card .badge { align-self: flex-start; margin-bottom: .8rem; }
.guide-card h3 { margin: 0 0 .3rem; font-size: 1.15rem; }
.guide-card p { color: var(--text-muted); font-size: .95rem; flex-grow: 1; margin: 0 0 1rem; }

/* ===== Footer (vert profond, chaleureux) ===== */
.site-footer { position: relative; background: linear-gradient(180deg, var(--forest-2), var(--forest)); color: var(--on-dark-mut); padding: 4.5rem 0 1.75rem; overflow: hidden; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.site-footer h4 { font-family: var(--display); color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.site-footer a { color: var(--on-dark-mut); transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--gold); }
.footer-brand strong { font-family: var(--display); color: #fff; font-size: 1.15rem; font-weight: 560; }
.footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(239, 233, 219, .14); margin-top: 3rem; padding-top: 1.25rem; font-size: .88rem; color: rgba(239,233,219,.55); display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; justify-content: space-between; align-items: center; }
.footer-legal a { color: rgba(239, 233, 219, .6); }
.footer-legal a:hover { color: var(--gold); }

/* ===== Reveal au scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0 5rem; }
  .hero__visual { max-width: 400px; margin: 0 auto; width: 100%; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 4rem 0; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--cream); padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; }
  .nav-actions { display: none; }
  .nav-cta-mobile { display: block; margin-top: .35rem; }
  .nav-cta-mobile .btn { width: 100%; }
  .nav-links a::after { display: none; }
  .pillars, .offers, .testimonials { grid-template-columns: 1fr; }
  .pillars > * { margin-top: 0 !important; }
  .constellation__lines { display: none; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__chip { left: 0; }
  .feature-row, .feature-row:nth-child(even) { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-row__media, .feature-row:nth-child(even) .feature-row__media { order: -1; max-width: 220px; }
  .about-split { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-split__head h2 { position: static; }
  .approach { grid-template-columns: 1fr; }
  .plans, .cols-2 { grid-template-columns: 1fr; }
  .checklist--cols { grid-template-columns: 1fr; }
  .guide { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}

/* ===== Mouvement réduit ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
