/* =========================================================
   STRATUM CRÉATION — Refonte v2
   styles.css — feuille commune (toutes pages)
   Palette + typos conservées du site v1.
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- PALETTE & VARIABLES ---------- */
:root {
  --cream:        #f7f4ef;
  --cream2:       #ede9e1;
  --dark:         #141410;
  --dark2:        #1e1e18;
  --green:        #3d7a3a;
  --green-light:  #eef5ec;
  --green-mid:    #5a9e56;
  --text:         #2a2a24;
  --muted:        #7a7a6e;
  --border:       rgba(42, 42, 36, 0.10);
  --border2:      rgba(42, 42, 36, 0.06);

  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  100px;

  --shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow:       0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.10);

  --pad-x:        6vw;
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  /* compense la hauteur du sticky nav (68 px) + top-bar (~32 px)
     pour qu'une ancre #section ne se cache pas dessous quand on
     atterrit dessus directement (deep link, partage, etc.). */
  scroll-padding-top: 110px;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

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

/* ---------- CURSOR ---------- */
#cursor {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
#cursor.big { width: 40px; height: 40px; background: rgba(61,122,58,0.15); }
@media (max-width: 900px) { #cursor { display: none; } }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--dark);
  color: rgba(247, 244, 239, 0.72);
  padding: 8px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.top-bar a { color: var(--green-mid); transition: color 0.2s; text-decoration: none; }
.top-bar a:hover { color: #79c374; }
.top-bar .top-bar-right { display: flex; gap: 18px; align-items: center; }

/* ---------- NAV ---------- */
nav.main-nav {
  position: sticky; top: 0;
  z-index: 9990;
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: all 0.3s ease;
}
nav.main-nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); height: 60px; }

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-decoration: none;
}
.logo em { font-style: italic; color: var(--green); }

nav.main-nav ul { list-style: none; display: flex; gap: 32px; }
nav.main-nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
nav.main-nav ul li a:hover { color: var(--green); }
nav.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width 0.3s ease;
}
nav.main-nav ul li a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  padding: 10px 22px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: #2f6630; transform: translateY(-1px); box-shadow: var(--shadow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  padding: 20px var(--pad-x);
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  z-index: 9989;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid var(--border2);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { margin-top: 8px; justify-content: center; }

/* ---------- BUTTONS ---------- */
.btn-dark, .btn-outline, .btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover { background: var(--green); transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: #2f6630; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  font-weight: 400;
}
.btn-outline:hover { border-color: rgba(42, 42, 36, 0.32); background: white; }

.btn-arrow::after { content: '→'; transition: transform 0.25s ease; }
.btn-dark:hover .btn-arrow::after,
.btn-green:hover .btn-arrow::after { transform: translateX(3px); }

/* ---------- SECTIONS BASE ---------- */
section { padding: 100px var(--pad-x); position: relative; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

h1, h2, h3, h4, h5 { font-family: 'Fraunces', serif; color: var(--dark); }

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
h2 em { font-style: italic; font-weight: 300; color: var(--green); }

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: calc(100vh - 68px);
  padding: 110px var(--pad-x) 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 75% 40%, rgba(61, 122, 58, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 35% 55% at 15% 85%, rgba(61, 122, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--text) 0px,
    var(--text) 1px,
    transparent 1px,
    transparent 60px
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 28px;
  max-width: 18ch;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s forwards;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}

.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-desc strong { color: var(--dark); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-trust-item svg {
  width: 18px; height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- FOOTER (placeholder Jour 1, refonte Jour 2) ---------- */
footer.site-footer {
  background: var(--dark);
  color: rgba(247, 244, 239, 0.7);
  padding: 60px var(--pad-x) 30px;
  font-size: 0.92rem;
}
footer.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
footer.site-footer .footer-brand .logo { color: var(--cream); font-size: 1.2rem; }
footer.site-footer .footer-brand .logo em { color: var(--green-mid); }
footer.site-footer .footer-brand p { margin-top: 12px; max-width: 320px; line-height: 1.6; font-size: 0.9rem; }
footer.site-footer h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
footer.site-footer ul { list-style: none; }
footer.site-footer ul li { margin-bottom: 8px; }
footer.site-footer ul li a {
  color: rgba(247, 244, 239, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.88rem;
}
footer.site-footer ul li a:hover { color: var(--green-mid); }
footer.site-footer .footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.45);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  :root { --pad-x: 5vw; }
  section { padding: 70px var(--pad-x); }

  nav.main-nav ul { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .top-bar { padding: 8px 5vw; font-size: 0.72rem; }
  .top-bar .top-bar-right { gap: 10px; }
  .top-bar a { font-size: 0.72rem; }

  .hero { padding: 80px var(--pad-x) 60px; min-height: calc(100vh - 60px); }
  h1.hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); margin-bottom: 22px; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-dark,
  .hero-actions .btn-green,
  .hero-actions .btn-outline { justify-content: center; width: 100%; }

  footer.site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer.site-footer .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 540px) {
  footer.site-footer .footer-top { grid-template-columns: 1fr; }
  .top-bar { flex-direction: column; gap: 4px; align-items: flex-start; }
  .top-bar .top-bar-right { width: 100%; justify-content: space-between; }
}

/* =========================================================
   JOUR 2 — Sections de la home
   ========================================================= */

.section-narrow { max-width: 980px; margin: 0 auto; }
.section-wide   { max-width: 1180px; margin: 0 auto; }

.alt-bg { background: var(--cream2); }

/* ---------- POUR QUI C'EST FAIT ---------- */
.for-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  align-items: start;
}
.for-who-head h2 { margin-bottom: 24px; }
.for-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.for-who-list li {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--dark);
  padding-left: 28px;
  position: relative;
}
.for-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 16px;
  height: 1.5px;
  background: var(--green);
}
.for-who-transition {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.3;
  grid-column: 1 / -1;
  text-align: center;
}

/* ---------- ÉTAPE 1 / 2 / 3 (timeline verticale) ---------- */
.steps {
  position: relative;
  max-width: 820px;
  margin: 60px auto 0;
}
.steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--green) 50%, rgba(61, 122, 58, 0.15) 100%);
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 36px 0 56px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.step-body h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 12px;
  color: var(--dark);
}
.step-body h3 em { font-style: italic; font-weight: 300; color: var(--green); }
.step-body p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 620px;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--green-light);
}

/* ---------- COMMENT ÇA MARCHE (process 4 étapes) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.process-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--dark);
}
.process-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- TARIFS RÉSUMÉS (3 cards home) ---------- */
.pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.psum-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.psum-card.featured {
  border-color: var(--green);
  box-shadow: 0 14px 40px rgba(61, 122, 58, 0.12);
}
.psum-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.psum-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.psum-price {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.psum-price small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.psum-desc {
  margin: 18px 0 24px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.psum-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psum-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.psum-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.psum-link {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.psum-link:hover { gap: 12px; }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 40px 24px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--green);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 480px; }
.faq-a-inner {
  padding: 0 0 24px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ---------- CTA FINAL (bandeau full-width) ---------- */
.final-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 110px var(--pad-x);
  text-align: center;
}
.final-cta h2 {
  color: var(--cream);
  margin-bottom: 20px;
}
.final-cta h2 em { color: var(--green-mid); }
.final-cta p {
  color: rgba(247, 244, 239, 0.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.final-cta .btn-green {
  font-size: 1rem;
  padding: 16px 32px;
}

/* =========================================================
   JOUR 3 — Pages dédiées (tarifs / a-propos / lucas)
   ========================================================= */

/* Hero court (réutilisé sur pages dédiées) */
.page-hero {
  padding: 64px var(--pad-x) 36px;
  position: relative;
  text-align: center;
  background: var(--cream);
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--dark);
  max-width: 22ch;
  margin: 0 auto 18px;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--green); }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
.page-hero .hero-eyebrow { justify-content: center; margin-bottom: 24px; }

/* ---------- TARIFS — grille tableau ---------- */
.pricing-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto;
}
.pcard {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.pcard.featured {
  border-color: var(--green);
  box-shadow: 0 14px 40px rgba(61, 122, 58, 0.12);
}
.pcard-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.pcard-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pcard-price {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.pcard-price small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 6px;
}
.pcard-meta {
  margin-top: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border2);
  font-size: 0.9rem;
  color: var(--muted);
}
.pcard-features {
  list-style: none;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.pcard-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.pcard-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}
.pcard-cta { margin-top: auto; }
.pcard-cta .btn-dark,
.pcard-cta .btn-green { width: 100%; justify-content: center; }
.pcard-guarantee {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.pricing-banner {
  max-width: 980px;
  margin: 60px auto 0;
  padding: 32px 36px;
  background: var(--green-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}
.pricing-banner h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.pricing-banner p { font-size: 0.98rem; line-height: 1.7; color: var(--text); }

/* ---------- CALCULATEUR (page tarifs) ---------- */
.calc {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.calc-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px 0;
}
.calc-option {
  padding: 12px 22px;
  border: 1.5px solid var(--border);
  background: white;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}
.calc-option:hover { border-color: var(--green); color: var(--green); }
.calc-option.active { background: var(--green); border-color: var(--green); color: white; }
.calc-result {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 8px;
}
.calc-result-label {
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- A-PROPOS ---------- */
.about-block {
  max-width: 720px;
  margin: 0 auto;
}
.about-block .about-para {
  margin-bottom: 40px;
}
.about-block .about-para h3 {
  font-family: 'Fraunces', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.about-block .about-para p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--dark);
}

/* ---------- LUCAS PAGE ---------- */
.lucas-pain {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.lucas-pain h2 {
  margin-bottom: 28px;
}
.lucas-pain p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lucas-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 60px auto 0;
}
.lucas-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  position: relative;
}
.lucas-step .step-pill {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.lucas-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.lucas-step p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

.demo-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 36px;
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
}
.demo-box .demo-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}
.demo-box h3 { color: var(--cream); margin-bottom: 18px; font-size: 1.5rem; }
.demo-box p { color: rgba(247, 244, 239, 0.7); margin-bottom: 22px; }
.demo-audio-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(247, 244, 239, 0.06);
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  max-width: 420px;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.2s ease;
}
.demo-audio-placeholder:hover { background: rgba(247, 244, 239, 0.10); }
.demo-audio-placeholder .play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.demo-audio-placeholder .play-label {
  font-size: 0.92rem;
  text-align: left;
  flex-grow: 1;
}
.demo-audio-placeholder .play-label small {
  display: block;
  color: rgba(247, 244, 239, 0.5);
  font-size: 0.78rem;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 40px auto 0;
}
.capability {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.capability-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.capability-icon svg { display: block; }
.capability h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.capability p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* =========================================================
   JOUR 4 — Popup 4 étapes
   ========================================================= */

#popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 16, 0.78);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
#popup-overlay.open { display: flex; }
.popup-modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  padding: 40px 44px 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: popupIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.2s ease;
}
.popup-close:hover { background: var(--cream2); color: var(--dark); }

.popup-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.popup-progress .bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(42, 42, 36, 0.1);
  overflow: hidden;
}
.popup-progress .bar.active { background: var(--green); }
.popup-progress .bar.done { background: var(--green); }

.popup-step { display: none; }
.popup-step.active { display: block; }

.popup-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.popup-question {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 8px;
}
.popup-help {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.popup-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.popup-options.single { grid-template-columns: 1fr; }
.popup-option {
  padding: 14px 18px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}
.popup-option:hover { border-color: var(--green); color: var(--green); }
.popup-option.selected { border-color: var(--green); background: var(--green-light); color: var(--dark); font-weight: 500; }

.popup-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.popup-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}
.popup-field label .opt {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}
.popup-field input,
.popup-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  background: white;
  color: var(--text);
  width: 100%;
  resize: vertical;
}
.popup-field input:focus,
.popup-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(61,122,58,0.1); }
.popup-field textarea { min-height: 80px; }

.popup-error {
  background: #fdecec;
  color: #b03939;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.86rem;
  margin-bottom: 16px;
  display: none;
}
.popup-error.show { display: block; }

.popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.popup-back {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  padding: 14px 0;
}
.popup-back:hover { color: var(--dark); }
.popup-next {
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.popup-next:hover { background: #2f6630; transform: translateY(-1px); }
.popup-next:disabled { background: var(--border); cursor: not-allowed; transform: none; }

.popup-success {
  text-align: center;
  padding: 20px 0;
}
.popup-success-icon {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.popup-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.popup-success p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.popup-success .footer-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

.popup-promise-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.popup-promise h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.popup-promise p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================================================
   LANDING PAGES /lp/* — header & footer minimaux
   ========================================================= */
.lp-bar {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: rgba(247, 244, 239, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
.lp-bar .lp-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
  pointer-events: none; /* logo non cliquable per brief */
}
.lp-bar .lp-logo em { font-style: italic; color: var(--green); }
.lp-cta {
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lp-cta:hover { background: #2f6630; transform: translateY(-1px); }

footer.lp-footer {
  background: var(--dark);
  color: rgba(247, 244, 239, 0.55);
  padding: 32px var(--pad-x);
  text-align: center;
  font-size: 0.82rem;
}
footer.lp-footer a {
  color: rgba(247, 244, 239, 0.65);
  text-decoration: none;
  margin: 0 12px;
}
footer.lp-footer a:hover { color: var(--green-mid); }

.lp-section {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.lp-section h2 { margin-bottom: 24px; }
.lp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  margin: 32px auto 0;
  text-align: left;
}
.lp-list li {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.4;
  padding-left: 28px;
  position: relative;
  color: var(--dark);
}
.lp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 1.5px;
  background: var(--green);
}
.lp-deliver {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 40px auto 0;
}
.lp-deliver-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.lp-deliver-item .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-deliver-item p { font-size: 0.96rem; line-height: 1.55; color: var(--text); }

/* =========================================================
   PAGES LÉGALES & BLOG
   ========================================================= */
.legal-content,
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.legal-content h2,
.article-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 36px 0 14px;
  color: var(--dark);
}
.legal-content h3,
.article-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--dark);
}
.legal-content p,
.article-content p { margin-bottom: 16px; }
.legal-content ul,
.article-content ul { margin: 0 0 16px 22px; }
.legal-content li,
.article-content li { margin-bottom: 6px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.blog-card-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark);
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-card .read-more {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
}

.article-meta {
  text-align: center;
  margin-bottom: 36px;
  font-size: 0.88rem;
  color: var(--muted);
}
.article-meta a { color: var(--green); text-decoration: none; }

/* =========================================================
   RESPONSIVE — sections Jour 2 / 3 / 4 / 5
   ========================================================= */
@media (max-width: 900px) {
  .for-who { grid-template-columns: 1fr; gap: 30px; }
  .for-who-transition { margin-top: 30px; padding-top: 24px; }

  .steps::before { left: 22px; }
  .step { grid-template-columns: 44px 1fr; gap: 20px; }
  .step-num { width: 44px; height: 44px; font-size: 1.2rem; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .pricing-summary { grid-template-columns: 1fr; }
  .pricing-grid-full { grid-template-columns: 1fr; }
  .lucas-flow { grid-template-columns: 1fr; }
  .capabilities { grid-template-columns: 1fr; }
  .lp-deliver { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .popup-modal { padding: 32px 24px 28px; max-width: 100%; }
  .popup-options { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
  .calc-result { font-size: 2.6rem; }
}
