/* ============================================================
   KRISTINE BARTHE — Site principal
   Charte graphique : Violet profond + Ivoire + Or
   Fonts : Cormorant Garamond (titres) + Inter (corps)
   ============================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --violet-deep:  #1A0E40;
  --violet:       #2D1B69;
  --violet-mid:   #6B48C8;
  --violet-light: #9B7DE8;
  --lavande:      #F3EFFA;
  --lavande-mid:  #D8CCF0;
  --ivory:        #FAF7F2;
  --ivory-dark:   #F0EAE0;
  --gold:         #C9A84C;
  --text-dark:    #0D0D1E;
  --text:         #1A1A2E;
  --text-mid:     #4A4A6A;
  --text-light:   #8B8BAA;
  --white:        #FFFFFF;
  --green-ok:     #3B6D11;
  --green-bg:     #EAF3DE;
  --warn:         #FFF3CD;
  --warn-border:  #E6AC00;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 4px rgba(45,27,105,.08);
  --shadow-md:  0 4px 20px rgba(45,27,105,.12);
  --shadow-lg:  0 12px 48px rgba(45,27,105,.18);

  --max-w: 1100px;
  --header-h: 72px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--violet-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--violet); }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--violet);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--violet); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--light { background: var(--white); }
.section--lavande { background: var(--lavande); }
.section--violet { background: var(--violet); color: var(--white); }
.section--ivory { background: var(--ivory-dark); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216,204,240,0.5);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(45,27,105,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(45,27,105,.2));
}
.logo > div { display: flex; flex-direction: column; gap: 1px; }
.logo__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--violet);
  line-height: 1;
}
.logo__sub {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: .04em;
}
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--lavande);
  color: var(--violet);
}
.header-cta {
  background: var(--violet);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 99px;
  font-weight: 500;
  font-size: 0.875rem !important;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
}
.header-cta:hover {
  background: var(--violet-mid) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(45,27,105,.25);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--violet);
  color: var(--white);
  border: 2px solid var(--violet);
}
.btn--primary:hover {
  background: var(--violet-mid);
  border-color: var(--violet-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,27,105,.28);
}
.btn--outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}
.btn--outline:hover {
  background: var(--lavande);
  color: var(--violet);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45,27,105,.12);
}
.btn--white {
  background: var(--white);
  color: var(--violet);
  border: 2px solid transparent;
}
.btn--white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,.25);
}
.btn--gold {
  background: var(--gold);
  color: var(--violet);
  border: 2px solid var(--gold);
}

/* ── HERO ── */
.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(150deg, var(--ivory) 0%, #F7F2FF 55%, var(--lavande) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--lavande-mid) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .5;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--lavande) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .6;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--violet);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  width: fit-content;
  line-height: 1.4;
  box-shadow: 0 3px 12px rgba(45,27,105,.25);
}
.hero h1 { margin-bottom: 0.75rem; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--violet);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-reassurance {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-reassurance span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-reassurance span::before { content: '✓'; color: var(--green-ok); font-weight: 600; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: 2rem 4rem 2rem 4rem;
  object-fit: cover;
  height: auto;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}
.hero-badge .badge-label { font-size: 0.72rem; opacity: .7; margin-bottom: 0.25rem; }
.hero-badge .badge-value { font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.3; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--violet-mid);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-mid); }

/* ── CARDS ── */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--lavande-mid);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--lavande);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--lavande);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }
.card--bordered { border-left: 4px solid var(--violet-mid); }
.card--lavande { background: var(--lavande); border-color: var(--lavande-mid); }

/* ── FOR WHO CARDS ── */
.pourqui-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.pourqui-card {
  background: linear-gradient(135deg, var(--lavande) 0%, #EDE8F8 100%);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  border-left: 4px solid var(--violet-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pourqui-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.pourqui-card h4 { color: var(--violet); margin-bottom: 0.5rem; font-size: 1rem; }
.pourqui-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; line-height: 1.65; }

/* ── STEPS ── */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  counter-increment: step;
  box-shadow: 0 4px 14px rgba(45,27,105,.3);
}
.step-body h3 { margin-bottom: 0.5rem; }
.step-body p { font-size: 0.92rem; color: var(--text-mid); margin: 0; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--lavande-mid);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--lavande-mid);
  position: absolute;
  top: -0.5rem;
  left: 1.75rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-stars::before {
  content: '★★★★★';
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial p { font-size: 1rem; font-style: italic; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { font-size: 0.85rem; font-weight: 500; color: var(--text-light); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--lavande-mid); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  transition: color .2s;
}
.faq-question:hover { color: var(--violet); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--violet-light);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 1.25rem;
  display: none;
}
.faq-answer.open { display: block; }
.faq-group { margin-bottom: 3rem; }
.faq-group-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--violet);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--violet);
  display: inline-block;
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--lavande-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--violet-mid);
  box-shadow: 0 0 0 3px rgba(107,72,200,.15);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; line-height: 1.6; }

/* ── CALENDLY EMBED ── */
.calendly-section { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.calendly-embed { min-height: 650px; }

/* ── PRICING ── */
.price-card {
  background: var(--white);
  border: 2px solid var(--lavande-mid);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}
.price-card--featured {
  background: linear-gradient(145deg, #ffffff 0%, #f8f4ff 100%);
  border-color: var(--violet-light);
  box-shadow: var(--shadow-lg);
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--violet);
  font-weight: 600;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.price-duration { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.price-features { text-align: left; margin-bottom: 2rem; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--lavande);
}
.price-feature:last-child { border-bottom: none; }
.price-feature::before { content: '✓'; color: var(--green-ok); font-weight: 700; flex-shrink: 0; }

/* ── REASSURANCE STRIP ── */
.reassurance-strip {
  background: var(--lavande);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.reassurance-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--violet); font-weight: 500; }
.reassurance-item::before { content: '✓'; font-size: 1.1rem; color: var(--green-ok); }

/* ── CTA SECTION ── */
.cta-section { text-align: center; padding: 5.5rem 0; position: relative; overflow: hidden; }
.section--violet { background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet) 50%, var(--violet-mid) 100%); }
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(155,125,232,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(216,204,240,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-section .btn { position: relative; }
.cta-micro { font-size: 0.85rem; color: rgba(255,255,255,.78); margin-top: 1rem; position: relative; }

/* ── BLOG ── */
.blog-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--lavande-mid);
  transition: box-shadow .3s, transform .3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--violet-mid);
  background: var(--lavande);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-light); }
.blog-read-more { color: var(--violet-mid); font-size: 0.875rem; font-weight: 500; }
.blog-read-more:hover { color: var(--violet); }

/* ── ARTICLE SINGLE ── */
.article-header { padding: 4rem 0 3rem; background: linear-gradient(135deg, var(--ivory) 0%, var(--lavande) 100%); }
.article-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-xl); margin-bottom: 3rem; }
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 780px;
  margin: 0 auto;
}
.article-body h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; color: var(--violet); }
.article-body h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body blockquote {
  border-left: 4px solid var(--violet-mid);
  padding: 1rem 1.5rem;
  background: var(--lavande);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--violet);
}
.article-body .highlight-box {
  background: var(--lavande);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.article-body th {
  background: var(--violet);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
}
.article-body td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--lavande-mid); }
.article-body tr:hover td { background: var(--lavande); }
.article-sources {
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.article-sources h4 { color: var(--violet); margin-bottom: 1rem; }
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--lavande-mid);
}
.article-tag {
  display: inline-block;
  background: var(--lavande);
  color: var(--violet-mid);
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin: 0.25rem;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-date { font-size: 0.85rem; color: var(--text-light); margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--lavande-mid); }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.legal-content li { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--text-mid); }
.legal-warn {
  background: var(--warn);
  border-left: 4px solid var(--warn-border);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: #5C4000;
  margin: 1.5rem 0;
}
.todo-field {
  background: var(--lavande);
  border: 1px dashed var(--violet-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  color: var(--violet-mid);
  margin: 0.5rem 0;
  font-style: italic;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--violet);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.875rem; line-height: 1.6; }
.cookie-text a { color: var(--lavande-mid); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-btn--accept { background: var(--white); color: var(--violet); border: 2px solid var(--white); }
.cookie-btn--refuse { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: var(--violet);
}
.mobile-sticky-cta a { display: block; text-align: center; color: var(--white); font-weight: 500; font-size: 0.95rem; }

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(160deg, var(--violet-deep) 0%, var(--violet) 100%);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo__name { color: var(--white); margin-bottom: 0.75rem; display: block; }
.footer-brand .logo__sub { color: rgba(255,255,255,.68); }
.footer-brand p { font-size: 0.875rem; margin-top: 1rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s;
}
.footer-social a:hover { background: var(--violet-mid); }

/* ── FALC MODE ── */
body.falc-mode {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.03em;
}
body.falc-mode p { margin-bottom: 1.5rem; }
body.falc-mode h1 { font-size: 2rem; }
body.falc-mode h2 { font-size: 1.6rem; }
body.falc-mode h3 { font-size: 1.3rem; }
body.falc-mode .falc-text { display: block; }
body.falc-mode .standard-text { display: none; }
.falc-text { display: none; }
.standard-text { display: block; }

.falc-toggle-wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
}
.falc-toggle-btn {
  background: var(--white);
  border: 2px solid var(--lavande-mid);
  border-radius: var(--radius-lg);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--violet);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: all .2s;
}
.falc-toggle-btn:hover { background: var(--lavande); }
.falc-toggle-btn.active { background: var(--green-bg); border-color: var(--green-ok); color: var(--green-ok); }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet) 60%, var(--violet-mid) 100%);
  padding: 4rem 0 3.5rem;
  color: var(--white);
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* ── PAGE HERO (bannière intérieure, alternative à .page-banner) ── */
.page-hero {
  background: linear-gradient(140deg, var(--violet-deep) 0%, var(--violet) 55%, var(--violet-mid) 100%);
  padding: 4rem 0 3.5rem;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.page-hero .eyebrow { color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); }
.page-hero__lead {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
  line-height: 1.75;
}

/* ── TWO COLUMN LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col--60-40 { grid-template-columns: 1.6fr 1fr; }
.two-col--sticky .sidebar { position: sticky; top: calc(var(--header-h) + 2rem); }

/* ── ABOUT PHOTO ── */
.about-photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: 500px; object-fit: cover; }
.about-diploma {
  background: var(--lavande);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.diploma-icon { font-size: 2rem; }
.diploma-text .label { font-size: 0.75rem; color: var(--text-light); }
.diploma-text .value { font-weight: 500; color: var(--violet); }

/* ── REVUE SCIENTIFIQUE ── */
.science-banner {
  background: linear-gradient(135deg, var(--ivory-dark), var(--lavande));
  border: 1px solid var(--lavande-mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}
.science-sources {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid var(--lavande-mid);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col--60-40 { grid-template-columns: 1fr; }
  /* photo about: order inversé sur mobile, image en premier */
  .about-photo { order: -1; }
  .about-photo img { height: 320px; }
}

@media (max-width: 768px) {
  html { font-size: 15.5px; }

  /* Blobs décoratifs : atténuer pour ne pas déborder sur mobile */
  .hero::before, .hero::after,
  .cta-section::before, .cta-section::after { opacity: 0.25; }

  /* Navigation */
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--lavande-mid);
    box-shadow: 0 8px 24px rgba(45,27,105,.12);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
  }
  .main-nav.open a {
    padding: 0.75rem 1rem;
    display: block;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
  .main-nav.open .header-cta {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: 99px;
    font-size: 1rem !important;
  }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  /* Logo : cacher le sous-titre pour gagner de la place */
  .logo__sub { display: none; }
  .logo__name { font-size: 1.1rem; }
  .logo__img { width: 44px; height: 44px; }

  /* Sections */
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0 5rem; }

  /* Hero eyebrow : éviter le débordement */
  .hero-eyebrow {
    font-size: 0.72rem;
    padding: 0.5rem 0.9rem;
    max-width: 100%;
    word-break: break-word;
  }

  /* Boutons hero : pleine largeur et empilés */
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Reassurance hero : colonne */
  .hero-reassurance { flex-direction: column; gap: 0.5rem; }

  /* CTA mobile */
  .mobile-sticky-cta { display: block; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .reassurance-strip { flex-direction: column; align-items: flex-start; }
  .article-nav { flex-direction: column; }

  /* Témoignages */
  .testimonial { padding: 1.75rem; }
  .testimonial::before { font-size: 5rem; top: -0.25rem; left: 1.25rem; }

  /* Price card */
  .price-card { padding: 1.75rem; }
  .price-amount { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  /* Grilles : une colonne */
  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 { grid-template-columns: 1fr; }
  .pourqui-cards { grid-template-columns: 1fr; }

  /* Section header */
  .section-header { margin-bottom: 2rem; }

  /* Cookie */
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: flex-end; }

  /* FALC toggle au dessus de la sticky CTA */
  .falc-toggle-wrapper { bottom: 4.5rem; right: 1rem; }
  .falc-toggle-btn { font-size: 0.72rem; padding: 0.4rem 0.75rem; }

  /* Footer social icons */
  .footer-social { margin-top: 1rem; }

  /* Steps : réduire l'écart */
  .step { gap: 1rem; }
  .step-num { width: 44px; height: 44px; font-size: 1.2rem; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-violet { color: var(--violet); }
.text-muted { color: var(--text-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.bold { font-weight: 500; }
.separator { height: 1px; background: var(--lavande-mid); margin: 3rem 0; }
.tag { display: inline-flex; align-items: center; gap: .3rem; background: var(--lavande); color: var(--violet); padding: .3rem .8rem; border-radius: 99px; font-size: .78rem; }
.badge-rdv {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-bg); color: var(--green-ok);
  border: 1px solid var(--green-ok);
  padding: .35rem .9rem; border-radius: 99px;
  font-size: .78rem; font-weight: 500;
}

/* print */
@media print { .site-header, .site-footer, .cookie-banner, .falc-toggle-wrapper, .mobile-sticky-cta { display: none; } }

/* ============================================================
   AMÉLIORATIONS VISUELLES — Animations & Micro-interactions
   ============================================================ */

/* ── KEYFRAMES ── */
@keyframes fadeUpScale {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes gradientDrift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,72,200,0); }
  50%       { box-shadow: 0 0 0 8px rgba(107,72,200,.12); }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -15px) scale(1.04); }
  66%       { transform: translate(-10px, 10px) scale(.97); }
}

/* ── SCROLL REVEAL — variantes ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px) scale(.99);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0) scale(1); }
.fade-in-left  { opacity: 0; transform: translateX(-24px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.fade-in-left.visible  { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(24px);  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-delay-1 { transition-delay: .08s; }
.fade-in-delay-2 { transition-delay: .16s; }
.fade-in-delay-3 { transition-delay: .24s; }
.fade-in-delay-4 { transition-delay: .32s; }

/* ── HERO — fond animé & contenu ── */
.hero {
  background: linear-gradient(150deg, var(--ivory) 0%, #f4eeff 40%, #ebe2fc 70%, var(--lavande) 100%);
  background-size: 200% 200%;
  animation: gradientDrift 12s ease infinite;
}
.hero::before {
  animation: blobFloat 14s ease-in-out infinite;
}
.hero::after {
  animation: blobFloat 18s ease-in-out infinite reverse;
}

/* Hero — apparition séquentielle des éléments au chargement */
.hero-eyebrow { animation: fadeUpScale .55s cubic-bezier(.22,1,.36,1) both; }
.hero h1      { animation: fadeUpScale .65s cubic-bezier(.22,1,.36,1) .1s both; }
.hero-subtitle { animation: fadeUpScale .65s cubic-bezier(.22,1,.36,1) .18s both; }
.hero-lead    { animation: fadeUpScale .65s cubic-bezier(.22,1,.36,1) .26s both; }
.hero-actions { animation: fadeUpScale .65s cubic-bezier(.22,1,.36,1) .34s both; }
.hero-reassurance { animation: fadeUpScale .65s cubic-bezier(.22,1,.36,1) .44s both; }
.hero-image   { animation: fadeRight .75s cubic-bezier(.22,1,.36,1) .2s both; }

/* ── NAVIGATION — lien avec soulignement animé ── */
.main-nav a:not(.header-cta) {
  position: relative;
  overflow: hidden;
}
.main-nav a:not(.header-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--violet-mid);
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.main-nav a:not(.header-cta):hover::after,
.main-nav a:not(.header-cta).active::after {
  width: 70%; left: 15%;
}

/* ── BOUTONS — effets raffinés ── */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::before { opacity: 1; animation: shimmer .6s linear; }
.btn:active { transform: scale(.975) !important; }

/* ── CARDS — hover glow ── */
.card {
  transition: box-shadow .35s cubic-bezier(.22,1,.36,1),
              transform   .35s cubic-bezier(.22,1,.36,1),
              border-color .25s ease;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(45,27,105,.14),
              0  0   0  1px rgba(107,72,200,.15);
  transform: translateY(-5px);
  border-color: var(--lavande-mid);
}

/* ── CARD ICON — animation au hover de la carte ── */
.card:hover .card-icon { animation: float 1.8s ease-in-out infinite; }

/* ── TÉMOIGNAGES — hover ── */
.testimonial {
  transition: box-shadow .35s cubic-bezier(.22,1,.36,1),
              transform   .35s cubic-bezier(.22,1,.36,1);
}
.testimonial:hover {
  box-shadow: 0 16px 48px rgba(45,27,105,.15);
  transform: translateY(-4px);
}

/* ── FAQ — transition hauteur fluide ── */
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height .4s cubic-bezier(.22,1,.36,1),
              padding-bottom .3s ease,
              opacity .3s ease;
  opacity: 0;
}
.faq-answer.open {
  max-height: 600px;
  padding-bottom: 1.25rem;
  opacity: 1;
}

/* ── SECTION HEADER — eyebrow avec ligne ── */
.section-header .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .1rem;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--violet-mid);
  opacity: .5;
}

/* ── PAGE HERO — formes flottantes ── */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(155,125,232,.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 16s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(216,204,240,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite reverse;
}
.page-hero h1   { animation: fadeUpScale .6s cubic-bezier(.22,1,.36,1) both; }
.page-hero .eyebrow { animation: fadeUpScale .5s cubic-bezier(.22,1,.36,1) both; }
.page-hero__lead { animation: fadeUpScale .6s cubic-bezier(.22,1,.36,1) .12s both; }

/* ── HEADER — glassmorphism amélioré ── */
.site-header {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(216,204,240,.4);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 32px rgba(45,27,105,.09);
}

/* ── BLOG CARDS — image zoom au hover ── */
.blog-card { overflow: hidden; }
.blog-card img {
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.blog-card:hover img { transform: scale(1.04); }

/* ── FORMULAIRE — champs améliorés ── */
.form-group input,
.form-group textarea,
.form-group select {
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--lavande-mid);
  background: #fdfaff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: #fdfaff;
  border-color: var(--violet-mid);
  box-shadow: 0 0 0 4px rgba(107,72,200,.12);
}

/* ── CTA SECTION — fond enrichi ── */
.section--violet {
  background: linear-gradient(135deg,
    var(--violet-deep) 0%,
    #3d2280 40%,
    var(--violet-mid) 100%);
  background-size: 200% 200%;
  animation: gradientDrift 15s ease infinite;
}

/* ── FOOTER — liens hover ── */
.footer-col a {
  position: relative;
  display: inline-block;
  transition: color .2s ease, transform .2s ease;
}
.footer-col a:hover { transform: translateX(3px); }

/* ── LOGO — hover subtil ── */
.logo { transition: opacity .2s ease; }
.logo:hover { opacity: .85; }
.logo__img { transition: filter .3s ease; }
.logo:hover .logo__img { filter: drop-shadow(0 2px 8px rgba(45,27,105,.35)); }

/* ── POURQUI CARDS — hover ── */
.pourqui-card {
  transition: transform .35s cubic-bezier(.22,1,.36,1),
              box-shadow .35s cubic-bezier(.22,1,.36,1),
              border-color .25s ease;
}
.pourqui-card:hover {
  transform: translateY(-4px) translateX(2px);
  box-shadow: 0 8px 28px rgba(45,27,105,.12);
  border-color: var(--violet-mid);
}

/* ── STEP NUMS — pulse au hover ── */
.step:hover .step-num { animation: pulseGlow 1s ease; }

/* ── REASSURANCE STRIP — items ── */
.reassurance-item { transition: transform .2s ease; }
.reassurance-item:hover { transform: scale(1.03); }

/* ── FOCUS VISIBLE — accessibilité ── */
:focus-visible {
  outline: 2px solid var(--violet-mid);
  outline-offset: 3px;
  border-radius: 3px;
}
a:focus-visible, button:focus-visible { border-radius: var(--radius-sm); }

/* ── ARTICLES — header animé & lecture ── */
.article-header {
  background: linear-gradient(140deg, var(--ivory) 0%, #f4eeff 50%, var(--lavande) 100%);
  background-size: 200% 200%;
  animation: gradientDrift 14s ease infinite;
  position: relative;
  overflow: hidden;
}
.article-header::after {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(155,125,232,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.article-header h1 { animation: fadeUpScale .65s cubic-bezier(.22,1,.36,1) both; }
.article-header .breadcrumb { animation: fadeUpScale .45s cubic-bezier(.22,1,.36,1) both; }
.article-header .blog-card-meta { animation: fadeUpScale .55s cubic-bezier(.22,1,.36,1) .1s both; }

.article-hero-img {
  animation: fadeUpScale .7s cubic-bezier(.22,1,.36,1) .15s both;
  border-radius: var(--radius-xl);
}

.article-body {
  animation: fadeUpScale .6s cubic-bezier(.22,1,.36,1) .25s both;
}

.article-body blockquote {
  border-left: 3px solid var(--violet-mid);
  background: linear-gradient(to right, var(--lavande), #f8f4ff);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 2rem;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--violet);
  margin: 2.5rem 0;
  position: relative;
}
.article-body blockquote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--violet-mid);
  opacity: .25;
  position: absolute;
  top: -.5rem; left: 1rem;
  line-height: 1;
}

.article-body .highlight-box {
  background: linear-gradient(135deg, var(--lavande) 0%, #ede8f8 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border-left: 3px solid var(--violet-mid);
}

/* ── BLOG CARD — lecture ── */
.blog-card-body { padding: 1.75rem; }
.blog-card h3 a {
  color: var(--violet);
  transition: color .2s ease;
}
.blog-card h3 a:hover { color: var(--violet-mid); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .75rem;
  font-weight: 500;
  transition: gap .2s ease, color .2s ease;
}
.blog-read-more:hover { gap: .6rem; color: var(--violet); }

/* ── PAGE BANNER — amélioration ── */
.page-banner {
  background: linear-gradient(140deg, var(--violet-deep) 0%, var(--violet) 55%, var(--violet-mid) 100%);
  background-size: 200% 200%;
  animation: gradientDrift 14s ease infinite;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(155,125,232,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── SCROLL DOUX — réduction de mouvement ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero, .section--violet { animation: none; }
}

/* ── CORRECTIFS TEXTE BLANC (headers sur fonds sombres) ── */
.page-banner h1, .page-banner h2, .page