/* ════════════════════════════════════════════════════════
   PichPich - Stylesheet partage (FR/EN)
   Charte graphique originale conservee a 100%
   ════════════════════════════════════════════════════════ */

:root {
  /* Brand colours (charte graphique v1.0) */
  --bordeaux: #7B252E;        /* Primary / dominant (60%) */
  --bordeaux-light: #943039;  /* Hover */
  --bordeaux-dark: #5C1B22;   /* Active */
  --framboise: #B63352;       /* Secondary + CTA + key-word highlight (30%) */
  --framboise-dark: #9C2B46;  /* CTA hover */
  --rose-light: #F2A9BC;      /* Soft accent, on dark backgrounds only (10%) */
  --prune: #301B18;           /* Dark anchor */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --noir: #1A1A1A;
  --text-body: #2D2D2D;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --border: #E8E8E8;
  --border-light: #F0F0F0;
  /* Functional UI colours only (never identity colours) */
  --success: #1E7A3A;
  --error: #F33C58;
  --warning: #C8862A;
  --info: #2D6CB5;
  /* Typography: Cormorant (titles), Montserrat (overlines/labels/UI), DM Sans (web body) */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Montserrat', Arial, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ──── LANG SWITCHER ──── */
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  border-radius: 50px; padding: 4px 8px;
  font-size: 13px; font-weight: 500;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--text-muted);
  padding: 2px 6px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--bordeaux); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--bordeaux); }

/* ──── NAV ──── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--text-body); text-decoration: none;
  font-weight: 400; letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bordeaux); }
.nav-cta {
  background: var(--framboise) !important; color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-size: 13px !important;
  font-weight: 500 !important; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--framboise-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--bordeaux); border-radius: 2px; transition: 0.3s; }

/* ──── HERO (homepage) ──── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--bordeaux); position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg-shape {
  position: absolute; top: -10%; right: -5%; width: 55%; height: 120%;
  opacity: 0.12; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-light); margin-bottom: 20px; font-weight: 600;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(42px, 6vw, 64px);
  color: var(--white); font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero h1 em { font-style: italic; color: var(--rose-light); }
.hero-text {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 540px; margin-bottom: 40px; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--bordeaux);
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.hero-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ──── PAGE HEADER (sub-pages) ──── */
.page-header {
  background: var(--bordeaux); color: var(--white);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-header-shape {
  position: absolute; top: -10%; right: -5%; width: 50%; height: 130%;
  opacity: 0.10; pointer-events: none;
}
.page-header-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-light); margin-bottom: 16px; font-weight: 600;
  position: relative; z-index: 2;
}
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px);
  color: var(--white); font-weight: 400; line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 20px; max-width: 720px;
  position: relative; z-index: 2;
}
.page-header h1 em { font-style: italic; color: var(--rose-light); }
.page-header p {
  font-size: 17px; color: rgba(255,255,255,0.78); max-width: 600px;
  font-weight: 300; line-height: 1.7; position: relative; z-index: 2;
}

/* ──── CORE PROMISE ──── */
.core-promise { padding: 80px 0; background: var(--off-white); border-bottom: 1px solid var(--border-light); }
.core-promise-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.core-promise h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.3;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.core-promise h2 em { font-style: italic; color: var(--framboise); }
.core-promise p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ──── STATS ──── */
.stats { padding: 80px 0; background: var(--white); border-bottom: 1px solid var(--border-light); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-number { font-family: var(--font-body); font-size: 46px; color: var(--bordeaux); font-weight: 600; line-height: 1; margin-bottom: 8px; letter-spacing: -0.01em; }
.stat-label { font-size: 14px; color: var(--text-muted); letter-spacing: 0.03em; }

/* ──── SECTION HELPERS ──── */
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--framboise); margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 60px; }

/* ──── FOR WHOM ──── */
.for-whom { padding: 100px 0; background: var(--white); }
.for-whom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.for-whom-card {
  background: var(--off-white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border-light); transition: transform 0.3s, border-color 0.3s;
}
.for-whom-card:hover { transform: translateY(-4px); border-color: var(--bordeaux); }
.for-whom-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--bordeaux);
}
.for-whom-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--noir); margin-bottom: 12px; font-weight: 500; }
.for-whom-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ──── RESULTS ──── */
.results { padding: 100px 0; background: var(--bordeaux); color: var(--white); position: relative; overflow: hidden; }
.results-curve {
  position: absolute; top: -10%; left: -5%; width: 45%; height: 130%;
  opacity: 0.06; pointer-events: none;
}
.results-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.results .section-eyebrow { color: var(--rose-light); }
.results .section-title { color: var(--white); }
.results .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 2;
}
.result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s;
}
.result-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); }
.result-number {
  font-family: var(--font-body); font-size: 46px; color: var(--rose-light);
  font-weight: 600; line-height: 1; margin-bottom: 12px; letter-spacing: -0.01em;
}
.result-label {
  font-size: 14px; color: var(--white); font-weight: 500;
  margin-bottom: 8px; line-height: 1.4;
}
.result-context {
  font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5;
  font-style: italic;
}

/* ──── SERVICES ──── */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 40px 28px;
  border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--bordeaux); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--bordeaux);
}
.service-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--noir); margin-bottom: 6px; font-weight: 500; }
.service-tagline { font-size: 13px; color: var(--bordeaux); font-weight: 500; margin-bottom: 16px; }
.service-card > div > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.service-card ul { list-style: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.service-card ul li { font-size: 13px; color: var(--text-body); padding: 5px 0 5px 18px; position: relative; }
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--bordeaux);
}
.service-card-link {
  margin-top: auto; padding-top: 20px;
  font-size: 14px; color: var(--bordeaux); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ──── AI SECTION ──── */
.ai-section { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.ai-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.ai-label {
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--framboise); font-weight: 600; margin-bottom: 12px;
}
.ai-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.2;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.ai-subtitle {
  font-size: 15px; color: var(--framboise); font-weight: 500;
  margin-bottom: 20px; font-style: italic;
}
.ai-intro { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.ai-items { display: flex; flex-direction: column; gap: 16px; }
.ai-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: 12px; padding: 18px 22px;
  border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s;
}
.ai-item:hover { border-color: var(--bordeaux); transform: translateX(4px); }
.ai-item-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--bordeaux); flex-shrink: 0;
}
.ai-item-title { font-size: 14px; font-weight: 600; color: var(--noir); margin-bottom: 4px; }
.ai-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ai-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.ai-visual-bg {
  width: 100%; aspect-ratio: 1;
  background: var(--bordeaux); border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.06; position: absolute;
}
.ai-visual-content { position: relative; z-index: 2; text-align: center; padding: 40px; }
.ai-big-number { font-family: var(--font-display); font-size: 100px; color: var(--bordeaux); font-weight: 400; line-height: 1; opacity: 0.15; }
.ai-quote {
  font-family: var(--font-display); font-size: 22px; color: var(--noir);
  font-style: italic; line-height: 1.5; max-width: 320px; margin: 0 auto;
}
.ai-result {
  margin-top: 24px; font-size: 14px; color: var(--text-muted);
  line-height: 1.7; padding: 18px 22px;
  background: var(--white); border-radius: 12px; border: 1px solid var(--border);
}
.ai-result strong { color: var(--noir); }

/* ──── METHODO ──── */
.methodo { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.methodo-curve {
  position: absolute; bottom: 0; left: -5%; width: 40%; height: 60%;
  opacity: 0.04; pointer-events: none;
}
.methodo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 2; }
.methodo-grid::before {
  content: ''; position: absolute; top: 44px; left: 15%; right: 15%;
  height: 1.5px; background: var(--bordeaux); opacity: 0.15;
}
.methodo-step { text-align: center; padding: 0 24px; position: relative; }
.step-number {
  width: 88px; height: 88px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--bordeaux); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--font-display); font-size: 32px;
  color: var(--bordeaux); font-weight: 400; position: relative; z-index: 2;
}
.methodo-step h3 { font-family: var(--font-display); font-size: 18px; color: var(--noir); margin-bottom: 12px; font-weight: 500; }
.methodo-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ──── ABOUT ──── */
.about { padding: 100px 0; background: var(--bordeaux); color: var(--white); position: relative; overflow: hidden; }
.about-curve {
  position: absolute; top: -15%; right: -10%; width: 50%; height: 130%;
  opacity: 0.08; pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.about-photo-wrap { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
/* Organic shape frame (charte: every image clipped in a brand blob, never a bare rectangle) */
.about-photo-wrap img {
  width: 100%; border: 3px solid rgba(255,255,255,0.15);
  border-radius: 47% 53% 45% 55% / 55% 48% 52% 45%;
}
.about .section-eyebrow { color: var(--rose-light); }
.about .section-title { color: var(--white); }
.about-text { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 20px; }
.about-text strong { color: var(--white); font-weight: 500; }
.about-highlights { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.about-tag {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); padding: 8px 18px; border-radius: 50px; font-size: 13px;
}

/* ──── TESTIMONIALS ──── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonials-grid .testimonial-card:nth-child(4) { grid-column: 1 / 2; }
.testimonials-grid .testimonial-card:nth-child(5) { grid-column: 2 / 3; }
.testimonial-card {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.testimonial-quote { font-family: var(--font-display); font-size: 52px; color: var(--bordeaux); line-height: 1; margin-bottom: 4px; }
.testimonial-text { font-size: 14px; color: var(--text-body); line-height: 1.8; flex: 1; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--off-white);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: var(--bordeaux); font-weight: 500; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--noir); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ──── PRICING ──── */
.pricing { padding: 100px 0; background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border); text-align: center; transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--noir); margin-bottom: 12px; font-weight: 500; }
.pricing-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ──── BLOG ──── */
.blog { padding: 100px 0; background: var(--white); }
.blog-grid { display: flex; flex-direction: column; gap: 24px; }
.blog-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center;
  background: var(--white); border-radius: 12px; border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.2s, border-color 0.2s; padding-right: 28px;
}
.blog-card:hover { transform: translateY(-2px); border-color: var(--bordeaux); }
.blog-img {
  width: 200px; height: 140px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border-radius: 42% 58% 54% 46% / 56% 44% 56% 44%;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--framboise); font-weight: 600; margin-bottom: 6px; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--noir); font-weight: 500; line-height: 1.3; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.blog-link {
  font-size: 13px; color: var(--bordeaux); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}
.blog-link:hover { gap: 8px; }
.blog-status {
  display: inline-block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--off-white); color: var(--text-muted); padding: 4px 10px;
  border-radius: 50px; margin-left: 8px; vertical-align: middle;
}

/* ──── RESOURCES (livre blanc) ──── */
.resource-hero {
  padding: 100px 0; background: var(--white);
}
.resource-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.resource-cover {
  background: var(--bordeaux); border-radius: 16px; padding: 60px 40px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
  aspect-ratio: 1/1.4; display: flex; flex-direction: column; justify-content: center;
}
.resource-cover-label {
  font-family: var(--font-ui); font-weight: 600;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-light); margin-bottom: 16px;
}
.resource-cover h3 {
  font-family: var(--font-display); font-size: 32px; color: var(--white);
  font-weight: 400; line-height: 1.2; margin-bottom: 16px;
}
.resource-cover-sub { font-size: 14px; color: rgba(255,255,255,0.7); font-style: italic; }
.resource-cover-line {
  width: 60px; height: 2px; background: var(--rose-light);
  margin: 24px auto;
}
.resource-cover-author { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: auto; }

.resource-info h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--noir); font-weight: 400; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.resource-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.resource-meta { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.resource-meta-item { font-size: 13px; color: var(--text-light); }
.resource-meta-item strong { color: var(--bordeaux); font-weight: 600; }
.resource-toc { background: var(--off-white); border-radius: 12px; padding: 24px 28px; margin-bottom: 32px; }
.resource-toc-title { font-size: 13px; font-weight: 600; color: var(--noir); margin-bottom: 12px; letter-spacing: 0.05em; }
.resource-toc ul { list-style: none; }
.resource-toc li { font-size: 14px; color: var(--text-body); padding: 6px 0; padding-left: 18px; position: relative; }
.resource-toc li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--bordeaux);
}
.resource-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--framboise); color: var(--white);
  padding: 16px 32px; border-radius: 50px; text-decoration: none;
  font-size: 15px; font-weight: 500; transition: background 0.2s, transform 0.2s;
}
.resource-download:hover { background: var(--framboise-dark); transform: translateY(-2px); }
.resource-download svg { width: 18px; height: 18px; }

.resource-coming {
  padding: 80px 0; background: var(--off-white); text-align: center;
}
.resource-coming h2 { font-family: var(--font-display); font-size: 32px; color: var(--noir); font-weight: 400; margin-bottom: 12px; }
.resource-coming p { font-size: 15px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ──── CTA ──── */
.cta-section {
  padding: 100px 0; background: var(--bordeaux);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section .section-eyebrow { color: var(--rose-light); }
.cta-section .section-title { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta-text { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 40px; }
.cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--bordeaux);
  padding: 18px 44px; border-radius: 50px; text-decoration: none;
  font-size: 16px; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s;
}
.cta-big:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ──── CONTACT ──── */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 18px; color: var(--noir); margin-bottom: 6px; margin-top: 24px; font-weight: 500; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { font-size: 14px; color: var(--text-muted); text-decoration: none; line-height: 1.7; }
.contact-info a:hover { color: var(--bordeaux); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-size: 13px; color: var(--text-body); font-weight: 500; margin-bottom: 2px; display: block; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 10px; font-family: var(--font-body); font-size: 14px;
  color: var(--text-body); background: var(--white); transition: border-color 0.2s; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--bordeaux); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B252E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.btn-submit {
  background: var(--framboise); color: var(--white); border: none;
  padding: 14px 36px; border-radius: 50px; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.2s; align-self: flex-start;
}
.btn-submit:hover { background: var(--framboise-dark); transform: translateY(-1px); }

/* ──── FOOTER ──── */
footer { padding: 60px 0 40px; background: var(--noir); color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-logo { height: 36px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 14px; transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--rose-light); color: var(--rose-light); }
footer h4 { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 16px; font-weight: 600; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ──── RESPONSIVE ──── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .methodo-grid { grid-template-columns: 1fr; gap: 40px; }
  .methodo-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(4),
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; padding-right: 0; }
  .blog-img { width: 100%; height: 180px; }
  .blog-card .blog-content-wrap { padding: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .ai-visual { display: none; }
  .resource-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .hero-content { padding: 60px 0; }
  .results-grid { grid-template-columns: 1fr; }
}

/* ──── LANG HIDE/SHOW ──── */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="fr"] { display: none; }
body.lang-en [data-lang="en"] { display: block; }
body.lang-en span[data-lang="en"] { display: inline; }
body.lang-en span[data-lang="fr"] { display: none; }
span[data-lang="fr"] { display: inline; }

/* ──── ANTI-SPAM & VALIDATION DES FORMULAIRES ──── */
.char-counter { font-family: var(--font-ui); font-size: 12px; color: var(--text-light); text-align: right; margin-top: 4px; }
.file-error { font-family: var(--font-body); font-size: 13px; color: var(--error); margin-top: 6px; font-weight: 500; }
.human-check {
  display: none; margin: 18px 0 4px; padding: 14px 18px;
  background: var(--off-white); border: 1px solid var(--border); border-radius: 12px;
}
.human-check.visible { display: block; }
.human-check label {
  display: flex; align-items: center; gap: 10px; cursor: pointer; margin: 0;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--text-body);
}
.human-check input { width: 18px; height: 18px; accent-color: var(--framboise); flex-shrink: 0; }
.contact-form button[disabled], .car-form button[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; }
.field-msg { font-family: var(--font-body); font-size: 13px; color: var(--error); margin-top: 5px; font-weight: 500; }
.field-invalid { border-color: var(--error) !important; }
.human-check .field-msg { margin-top: 8px; }

/* ──── SKIP LINK (accessibilité clavier) ──── */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 200;
  background: var(--bordeaux); color: var(--white);
  padding: 10px 18px; border-radius: 8px; font-size: 14px;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ════════════════════════════════════════════════════════
   REFONTE 10-08-2026 — Système de composants (accueil d'abord)
   ADDITIF : n'altère aucune classe existante des autres pages.
   ════════════════════════════════════════════════════════ */

/* ── Alias de jetons (noms courts de la charte) → mêmes valeurs ── */
:root{
  --bord:#7B252E; --bordL:#943039; --bordD:#5C1B22;
  --fram:#B63352; --rose:#F2A9BC; --black:#1A1A1A;
  --ink:#2D2D2D; --grey:#6B6B6B; --lgrey:#999999;
  --bd:#E8E8E8; --off:#FAFAFA;
  --blush:#FBF5F6;   /* rose très pâle : fond doux d'alternance (charte : rose = fond) */
}

/* ── Chiffres & données : toujours en DM Sans (règle de charte) ── */
.num{ font-family: var(--font-body); font-weight: 600; font-feature-settings: "tnum" 1; }

/* ── Focus clavier visible (accessibilité) ── */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .btn:focus-visible, .fab:focus-visible {
  outline: 3px solid var(--framboise); outline-offset: 2px; border-radius: 6px;
}

/* ── Utilitaires de fond (bascule ponctuelle par page) ── */
.bg-off { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-blush { background: var(--blush); }

/* ── Boutons réutilisables (pilule) — cibles tactiles ≥ 44 px ── */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px; padding: 13px 28px; border-radius: 50px; border: 0; cursor: pointer;
  background: var(--framboise); color: var(--white); text-decoration: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; letter-spacing: .01em;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:hover{ background: var(--framboise-dark); transform: translateY(-2px); }
.btn svg{ width: 16px; height: 16px; transition: transform .2s; }
.btn:hover svg{ transform: translateX(3px); }
.btn.b{ background: var(--bordeaux); } .btn.b:hover{ background: var(--bordeaux-light); }
.btn.ghost{ background: transparent; color: var(--bordeaux); border: 1.6px solid var(--bordeaux); }
.btn.ghost:hover{ background: var(--off-white); transform: translateY(-2px); }
.btn.lg{ min-height: 52px; padding: 16px 40px; font-size: 16px; }

/* ── Révélation au défilement ── */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none; } }

/* ── Bouton flottant persistant « Planifier un appel » ── */
.fab{
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  box-shadow: 0 10px 30px rgba(123,37,46,.28);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.fab.show{ opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 600px){ .fab{ right: 14px; bottom: 14px; } }

/* ── HERO ACCUEIL (clair, portrait en forme organique) ── */
.rhero{ position: relative; overflow: hidden; background: var(--white); padding: 132px 0 84px; }
.rhero-blob{
  position: absolute; top: -90px; right: -110px; width: 520px; height: 470px; z-index: 0;
  background: var(--rose-light); opacity: .20;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; pointer-events: none;
}
.rhero .container{ position: relative; z-index: 1; }
.rhero-grid{ display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.rhero h1{
  font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -.01em;
  font-size: clamp(40px, 5.2vw, 66px); color: var(--bordeaux); margin-bottom: 22px;
}
.rhero h1 em{ font-style: italic; color: var(--framboise); }
.rhero-lead{ font-size: 18px; line-height: 1.7; color: var(--text-body); max-width: 40ch; margin-bottom: 30px; }
.rhero-cta{ display: flex; gap: 14px; flex-wrap: wrap; }
.trust{
  display: flex; gap: 14px 28px; flex-wrap: wrap; margin-top: 34px;
  font-family: var(--font-ui); font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-muted);
}
.trust span{ display: inline-flex; align-items: baseline; gap: 6px; }
.trust .num{ color: var(--bordeaux); font-size: 16px; }
.portrait{ position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 4/5; }
.portrait img{
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  border-radius: 47% 53% 46% 54% / 40% 42% 58% 60%;
  box-shadow: 0 18px 44px rgba(123,37,46,.18);
}
.chip-float{
  position: absolute; left: -6px; bottom: 26px; background: var(--white);
  border: 1px solid var(--border); border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}
.chip-float .n{ font-family: var(--font-body); font-weight: 700; font-size: 32px; line-height: 1; color: var(--framboise); letter-spacing: -.01em; }
.chip-float .l{ font-family: var(--font-ui); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-top: 4px; }

/* ── FIGURES (compteur) : blob rosé derrière chaque nombre ── */
.figures{ padding: 90px 0; background: var(--white); position: relative; overflow: hidden; }
.figures .container{ position: relative; z-index: 1; }
.figures-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.figure{ position: relative; }
.figure .n{ font-family: var(--font-body); font-weight: 600; font-size: clamp(46px, 5vw, 62px); line-height: 1; color: var(--bordeaux); letter-spacing: -.01em; position: relative; display: inline-block; z-index: 1; }
.figure .n::before{ content: ''; position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); width: 118px; height: 118px; background: var(--rose-light); opacity: .30; z-index: -1; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
.figure .l{ font-size: 14px; color: var(--text-muted); margin-top: 18px; }

/* ── ABOUT accueil (aperçu, fond rosé doux) ── */
.rabout{ padding: 100px 0; background: var(--blush); position: relative; overflow: hidden; }
.rabout .container{ position: relative; z-index: 1; }
.rabout-grid{ display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.rabout-shot img{ width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto; }
.rabout-text{ font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.rabout-text strong{ color: var(--noir); font-weight: 600; }
.rabout-tags{ display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 6px; }
.rabout-tag{
  background: var(--white); border: 1px solid var(--border);
  color: var(--bordeaux); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 500;
}

/* ── Marqueur numéroté des services (01/02/03 en Cormorant, exception charte) ── */
.svc-no{ font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--framboise); letter-spacing: .06em; display: block; margin-bottom: 4px; }

/* ── MÉTHODE : blob rosé derrière chaque numéro ── */
.method{ padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.method .container{ position: relative; z-index: 1; }
.method-grid{ display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.steps{ display: grid; grid-template-columns: 1fr 1fr; gap: 38px 40px; }
.step .k{ position: relative; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; margin-bottom: 12px; font-family: var(--font-display); font-size: 27px; font-weight: 600; color: var(--framboise); line-height: 1; z-index: 1; }
.step .k::before{ content: ''; position: absolute; inset: 0; background: var(--rose-light); opacity: .34; z-index: -1; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
.step h3{ font-family: var(--font-ui); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--noir); margin: 4px 0 6px; }
.step p{ font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Bandeau de confiance (noms d'entreprises, entre deux lignes) ── */
.logos{ background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
.logos .container{ display: flex; align-items: center; gap: 16px 30px; flex-wrap: wrap; justify-content: center; }
.logos .cap{ font-family: var(--font-ui); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--text-muted); }
.logos .brand{ font-family: var(--font-display); font-size: 22px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }

/* ── Témoignages : grande citation + mini-cartes, fond rosé, avatars en blob ── */
.tst{ padding: 100px 0; background: var(--blush); position: relative; overflow: hidden; }
.tst .container{ display: grid; grid-template-columns: 1.18fr .82fr; gap: 46px; align-items: start; position: relative; z-index: 1; }
.tblock .bigq{ margin-top: 6px; }
.bigq{ font-family: var(--font-display); font-style: italic; font-size: clamp(24px, 3vw, 35px); line-height: 1.32; color: var(--bordeaux); }
.who{ display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.av{ width: 48px; height: 48px; border-radius: 58% 42% 45% 55% / 45% 55% 45% 55%; background: var(--bordeaux); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 600; font-size: 15px; flex: 0 0 auto; }
.who .nm{ font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--noir); }
.who .rl{ font-size: 12.5px; color: var(--text-muted); }
.mini{ background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; margin-bottom: 14px; box-shadow: 0 6px 18px rgba(123,37,46,.05); }
.mini:last-child{ margin-bottom: 0; }
.mini p{ font-family: var(--font-display); font-style: italic; font-size: 16px; color: #3a3a3a; margin-bottom: 10px; line-height: 1.5; }
.mini .who{ margin-top: 0; }
.mini .av{ width: 36px; height: 36px; font-size: 12px; }

/* ── CTA final « Planifions. » — aligné à gauche (maquette) ── */
.finalcta{ background: var(--white); text-align: left; padding: 110px 0; border-top: 1px solid var(--border-light); position: relative; overflow: hidden; }
.finalcta .blob{ position: absolute; bottom: -170px; right: -120px; width: 470px; height: 440px; background: var(--rose-light); opacity: .22; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; z-index: 0; pointer-events: none; }
.finalcta .container{ position: relative; z-index: 1; }
.finalcta h2{ font-family: var(--font-display); color: var(--bordeaux); font-weight: 500; font-size: clamp(56px, 9vw, 120px); line-height: .95; letter-spacing: -.01em; margin-bottom: 6px; }
.finalcta p{ color: var(--text-muted); font-size: 16px; margin: 14px 0 30px; max-width: 46ch; }

/* ── Cartes un peu moins « carrées » ── */
.for-whom-card, .service-card{ border-radius: 20px; }

/* ── Utilitaires : blob décoratif réutilisable + bouton compact ── */
.oblob{ position: absolute; z-index: 0; pointer-events: none; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
.oblob.rose{ background: var(--rose-light); }
.oblob.fram{ background: var(--framboise); }
.oblob.bord{ background: var(--bordeaux); }
.btn.sm{ min-height: 40px; padding: 10px 22px; font-size: 14px; }

/* ── Responsive refonte ── */
@media (max-width: 900px){
  .rhero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .rhero{ padding: 104px 0 60px; }
  .rabout-grid{ grid-template-columns: 1fr; gap: 36px; }
  .rabout-shot{ order: -1; }
  .method-grid{ grid-template-columns: 1fr; gap: 32px; }
  .tst .container{ grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px){
  .figures-grid{ grid-template-columns: 1fr; gap: 30px; }
  .steps{ grid-template-columns: 1fr; }
  .rhero-cta .btn{ width: 100%; }
  .rhero-blob{ width: 300px; height: 280px; top: -50px; right: -70px; }
}

/* ════════════════════════════════════════════════════════
   REFONTE v4 — icônes pleines, CTA animé, IA en blob
   ════════════════════════════════════════════════════════ */

/* ── Icônes PLEINES dans un blob bordeaux (accueil) ── */
.service-icon.ic-solid, .for-whom-icon.ic-solid{
  width: 58px; height: 58px; background: var(--bordeaux); border: 0; color: #fff;
  border-radius: 58% 42% 47% 53% / 47% 55% 45% 53%;
  transition: transform .3s ease, border-radius .5s ease;
}
.ai-item-icon.ic-solid{
  width: 42px; height: 42px; background: var(--bordeaux); border: 0; color: #fff;
  border-radius: 58% 42% 47% 53% / 47% 55% 45% 53%;
}
.ic-solid svg{ width: 27px; height: 27px; }
.ai-item-icon.ic-solid svg{ width: 21px; height: 21px; }
.service-card:hover .service-icon.ic-solid,
.for-whom-card:hover .for-whom-icon.ic-solid{
  transform: rotate(-5deg) scale(1.06);
  border-radius: 50% 50% 46% 54% / 55% 46% 54% 45%;
}

/* ── CTA « Planifier un appel » : pulsation légère pour attirer l'œil ── */
@keyframes ctaPulse{
  0%   { box-shadow: 0 6px 18px rgba(123,37,46,.22), 0 0 0 0 rgba(182,51,82,.40); }
  70%  { box-shadow: 0 6px 18px rgba(123,37,46,.22), 0 0 0 13px rgba(182,51,82,0); }
  100% { box-shadow: 0 6px 18px rgba(123,37,46,.22), 0 0 0 0 rgba(182,51,82,0); }
}
.cta-pulse{ animation: ctaPulse 2.8s ease-out infinite; }
@media (prefers-reduced-motion: reduce){ .cta-pulse{ animation: none; } }

/* ── IA : visuel en blob (fini l'encadré carré) ── */
.ai-media{ display: flex; align-items: center; justify-content: center; }
.ai-blob{
  position: relative; width: 100%; max-width: 430px; aspect-ratio: 1/1;
  background: var(--bordeaux); overflow: hidden;
  border-radius: 58% 42% 47% 53% / 52% 55% 45% 48%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 22px 54px rgba(123,37,46,.22);
}
.ai-blob img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; opacity: .14; }
.ai-blob .q{ position: relative; z-index: 1; padding: 44px 48px; }
.ai-blob .mk{ font-family: var(--font-display); font-size: 66px; color: var(--rose-light); line-height: .25; display: block; margin-bottom: 18px; }
.ai-blob .q p{ font-family: var(--font-display); font-style: italic; font-size: clamp(21px, 2.4vw, 27px); color: #fff; line-height: 1.4; }
@media (max-width: 900px){ .ai-blob{ max-width: 340px; } }

/* ── EXPERTISES façon maquette LOVISA : colonnes aérées, filet fin, sans carte ── */
.xp-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; margin-top: 54px; }
.xp{ position: relative; }
.xp .rule{ display: block; height: 1px; background: var(--border); margin-bottom: 26px; }
.xp .ic{ color: var(--bordeaux); margin-bottom: 18px; }
.xp .ic svg{ width: 34px; height: 34px; display: block; }
.xp h3{ font-family: var(--font-display); font-size: 25px; font-weight: 600; color: var(--bordeaux); line-height: 1.2; margin-bottom: 8px; }
.xp .tg{ font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--framboise); margin-bottom: 14px; }
.xp p{ font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.xp .more{ display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--bordeaux); text-decoration: none; transition: gap .2s; }
.xp .more:hover{ gap: 12px; }
.xp .more svg{ width: 14px; height: 14px; }
@media (max-width: 900px){ .xp-grid{ grid-template-columns: 1fr; gap: 38px; margin-top: 38px; } }

/* ════════════════════════════════════════════════════════
   REFONTE v6 — style Lovable : plus d'encadrés, bandeau défilant,
   bloc résultats sombre et épuré. S'applique à tout le site.
   ════════════════════════════════════════════════════════ */

/* ── 1. BANDEAU DE CONFIANCE DÉFILANT (marquee) ── */
.logos{ padding: 22px 0; overflow: hidden; }
.logos .container{ display: flex; align-items: center; gap: 0; flex-wrap: nowrap; max-width: none; padding: 0; }
.mq{ position: relative; flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.mq-track{ display: flex; width: max-content; animation: mqScroll 38s linear infinite; }
.mq-track:hover{ animation-play-state: paused; }
.mq-group{ display: flex; align-items: center; gap: 46px; padding-right: 46px; flex: 0 0 auto; }
.mq .brand{ font-family: var(--font-display); font-size: 22px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
@keyframes mqScroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .mq-track{ animation: none; } .mq{ overflow-x: auto; } }
.logos .cap{ flex: 0 0 auto; padding-left: 24px; padding-right: 22px; }
@media (max-width: 700px){ .logos .cap{ display: none; } }

/* ── 2. FINI LES ENCADRÉS (site entier) ── */
.for-whom-card,
.service-card,
.testimonial-card,
.mini,
.ai-item,
.ai-result,
.pricing-card,
.resource-toc{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.for-whom-card:hover, .service-card:hover, .pricing-card:hover, .ai-item:hover{ transform: none !important; }
/* filet fin en tête de colonne, comme la maquette */
.for-whom-card, .service-card{ border-top: 1px solid var(--border) !important; padding-top: 26px !important; }
.for-whom-grid, .services-grid{ gap: 46px; }
.for-whom-card h3, .service-card h3{ font-family: var(--font-display); font-size: 25px; color: var(--bordeaux); font-weight: 600; }
.for-whom-card p, .service-card > div > p{ font-size: 15px; line-height: 1.75; }
.ai-items{ gap: 26px; }
.ai-item{ padding: 0 !important; align-items: flex-start; }
.ai-result{ padding: 18px 0 0 !important; border-top: 1px solid var(--border) !important; }
.mini{ padding: 0 !important; margin-bottom: 30px; }
.mini + .mini{ border-top: 1px solid var(--border) !important; padding-top: 26px !important; }
.tst .mini p{ font-family: var(--font-body); font-style: italic; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── 3. RÉSULTATS : bloc sombre, mais épuré (plus de cartes) ── */
.results{ padding: 110px 0; }
.results-header{ text-align: left; margin-bottom: 64px; }
.results .section-subtitle{ margin: 0; }
.results-header .rule{ display: block; width: 64px; height: 2px; background: var(--rose-light); margin-top: 26px; }
.results-grid{ gap: 40px 34px; }
.result-card{
  background: transparent !important; border: 0 !important; backdrop-filter: none !important;
  border-radius: 0 !important; padding: 0 !important;
}
.result-card:hover{ transform: none !important; background: transparent !important; }
.result-number{ font-size: clamp(42px, 4.6vw, 58px); margin-bottom: 14px; }
.result-label{ font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.result-context{ font-size: 12.5px; font-style: normal; color: rgba(255,255,255,.62); }
@media (max-width: 900px){ .results-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .results-grid{ grid-template-columns: 1fr; } }

/* ── FAQ (accordeon sobre, style Lovable) ── */
.faq details{ border-top: 1px solid var(--border); padding: 0; }
.faq details:last-child{ border-bottom: 1px solid var(--border); }
.faq summary{
  list-style: none; cursor: pointer; padding: 20px 34px 20px 0; position: relative;
  font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--bordeaux); line-height: 1.35;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{
  content: ''; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--framboise); border-bottom: 2px solid var(--framboise);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq details[open] summary::after{ transform: translateY(-30%) rotate(-135deg); }
.faq summary:focus-visible{ outline: 3px solid var(--framboise); outline-offset: 3px; border-radius: 6px; }
.faq details p{ font-size: 15px; color: var(--text-muted); line-height: 1.75; padding: 0 0 22px; margin-top: -4px; }

/* ── PHOTO EN BLOB AVEC VOILE BORDEAUX + CITATION (reutilisable) ──
   Permet d'utiliser des photos de qualite inegale : le voile unifie
   le rendu et met la citation en avant.                            */
.qblob{
  position: relative; width: 100%; max-width: 430px; margin: 0 auto; aspect-ratio: 1/1;
  background: var(--bordeaux); overflow: hidden;
  border-radius: 58% 42% 47% 53% / 52% 55% 45% 48%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 22px 54px rgba(123,37,46,.22);
}
.qblob img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.qblob .q{ position: relative; z-index: 1; padding: 42px 46px; }
.qblob .mk{ font-family: var(--font-display); font-size: 62px; color: var(--rose-light); line-height: .25; display: block; margin-bottom: 18px; }
.qblob .q p{ font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2.3vw, 26px); color: #fff; line-height: 1.4; }
.qblob .q cite{ display: block; margin-top: 16px; font-family: var(--font-ui); font-style: normal; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--rose-light); }
/* variantes de cadrage selon la photo */
.qblob.top img{ object-position: center 15%; }
.qblob.mid img{ object-position: center 32%; }
@media (max-width: 900px){ .qblob{ max-width: 330px; } }

/* ── Cartes de blog : sans encadre, filet de separation (style Lovable) ── */
.blog-card{
  background: transparent !important; border: 0 !important; border-radius: 0 !important;
  border-top: 1px solid var(--border) !important; padding: 30px 0 !important;
  transition: none !important;
}
.blog-card:hover{ transform: none !important; border-color: var(--border) !important; }
.blog-card:hover h3{ color: var(--framboise); }
.blog-grid{ gap: 0; }
.blog-card h3{ font-size: 22px; color: var(--bordeaux); transition: color .2s; }
.blog-card p{ font-size: 14.5px; }
.blog-img{ border-radius: 52% 48% 45% 55% / 55% 52% 48% 45%; }
@media (max-width: 900px){ .blog-card{ padding: 26px 0 !important; } }

/* ════════════════════════════════════════════════════════
   HARMONISATION v7 — un seul systeme pour tout le site
   (chiffres en blob, icones pleines, FAQ, boutons, formulaires)
   ════════════════════════════════════════════════════════ */

/* ── 1. TOUS les chiffres : DM Sans + blob rose derriere ── */
.stat-number, .result-number, .step-number, .figure .n, .num, .fig .n{
  font-family: var(--font-body) !important;
  font-feature-settings: "tnum" 1;
}
.stat-number, .step-number{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  z-index: 1;
}
.stat-number::before, .step-number::before{
  content: ''; position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: 120%; aspect-ratio: 1/.92; min-width: 104px; background: var(--rose-light);
  opacity: .30; z-index: -1; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
/* la methode : cercle remplace par le blob */
.step-number{
  width: auto !important; min-width: 84px; height: 84px !important;
  background: transparent !important; border: 0 !important;
  font-family: var(--font-display) !important;   /* 01-04 = marqueurs decoratifs (charte) */
  color: var(--framboise) !important; font-size: 27px !important;
}
.methodo-grid::before{ display: none; }
/* sur fond bordeaux, le blob passe en blanc translucide */
.results .result-number::before, .about .stat-number::before{ background: rgba(255,255,255,.14); opacity: 1; }

/* ── 2. ICONES : pleines, dans un blob bordeaux ── */
.service-icon, .for-whom-icon, .ai-item-icon{
  background: var(--bordeaux) !important; border: 0 !important; color: #fff !important;
  border-radius: 58% 42% 47% 53% / 47% 55% 45% 53% !important;
  transition: transform .3s ease, border-radius .5s ease;
}
.service-icon, .for-whom-icon{ width: 58px; height: 58px; }
.ai-item-icon{ width: 42px; height: 42px; }
.service-card:hover .service-icon, .for-whom-card:hover .for-whom-icon{
  transform: rotate(-5deg) scale(1.06);
  border-radius: 50% 50% 46% 54% / 55% 46% 54% 45% !important;
}
/* les traits residuels sont epaissis et remplis pour un rendu "solid" */
.service-icon svg [stroke], .for-whom-icon svg [stroke], .ai-item-icon svg [stroke]{ stroke-width: 2.4; }

/* ── 3. FAQ : un seul style de menu deroulant, partout ── */
.faq details, details.faq-item, details.faq{
  border-top: 1px solid var(--border); border-bottom: 0; padding: 0; margin: 0;
  background: transparent;
}
.faq details:last-child, details.faq-item:last-of-type, details.faq:last-of-type{ border-bottom: 1px solid var(--border); }
.faq summary, details.faq-item > summary, details.faq > summary{
  list-style: none; cursor: pointer; padding: 20px 36px 20px 0; margin: 0; position: relative;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--bordeaux); line-height: 1.35;
}
.faq summary::-webkit-details-marker, details.faq-item > summary::-webkit-details-marker, details.faq > summary::-webkit-details-marker{ display: none; }
.faq summary::after, details.faq-item > summary::after, details.faq > summary::after{
  content: ''; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--framboise); border-bottom: 2px solid var(--framboise);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq details[open] summary::after, details.faq-item[open] > summary::after, details.faq[open] > summary::after{ transform: translateY(-30%) rotate(-135deg); }
.faq summary:focus-visible, details.faq-item > summary:focus-visible, details.faq > summary:focus-visible{ outline: 3px solid var(--framboise); outline-offset: 3px; border-radius: 6px; }
.faq details > *:not(summary), details.faq-item > *:not(summary), details.faq > *:not(summary){
  font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0 0 20px; padding: 0;
}

/* ── 4. BOUTONS : meme forme partout, couleur selon le fond ── */
.cta-big, .hero-cta, .resource-download, .btn-submit, button[type="submit"]{
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 14px 32px; border-radius: 50px !important; border: 0;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; letter-spacing: .01em;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.cta-big:hover, .hero-cta:hover, .resource-download:hover, .btn-submit:hover, button[type="submit"]:hover{
  transform: translateY(-2px);
}
/* liens flechés : meme comportement partout */
.service-card-link, .blog-link, .more{
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--bordeaux); text-decoration: none;
  transition: gap .2s;
}
.service-card-link:hover, .blog-link:hover, .more:hover{ gap: 12px; }

/* ── 5. FORMULAIRES : identiques sur tout le site ── */
.contact-form input, .contact-form select, .contact-form textarea,
.car-form input, .car-form select, .car-form textarea{
  border-radius: 12px; border: 1.5px solid var(--border); padding: 13px 16px;
  font-family: var(--font-body); font-size: 15px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus,
.car-form input:focus, .car-form select:focus, .car-form textarea:focus{
  border-color: var(--framboise); outline: none;
}
.contact-form label, .car-form label{
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-body);
}

/* ── 6. Texte des articles : justifie ── */
.article-body p, .post-content p, .prose p, article p{ text-align: justify; text-justify: inter-word; hyphens: auto; }
@media (max-width: 600px){ .article-body p, .post-content p, .prose p, article p{ text-align: left; hyphens: none; } }

/* ── 7. Ligne meta des articles : date, duree de lecture, mots-cles ── */
.article-meta{
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 14px; color: var(--text-light);
  margin: 0 0 6px; text-align: left;
}
.article-meta .am-sep{ opacity: .45; }
.article-meta .am-tags{ color: var(--bordeaux); }

/* ── Couverture du livre blanc : image de fond neuromarketing ── */
.resource-cover{ position: relative; overflow: hidden; isolation: isolate; }
.resource-cover::before{
  content:''; position:absolute; inset:0; z-index:-2;
  background:url('/images/neuromarketing-cover.jpg') center/cover no-repeat;
}
.resource-cover::after{
  content:''; position:absolute; inset:0; z-index:-1; background:var(--bordeaux); opacity:.82;
}
.resource-cover > *{ position: relative; }

/* ── Fenetre modale du formulaire (livre blanc) ── */
.lb-overlay{
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(26,26,26,.62); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 20px;
}
.lb-overlay.open{ display: flex; }
.lb-modal{
  position: relative; width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
  background: var(--white); border-radius: 22px; padding: 34px 36px 30px;
  box-shadow: 0 26px 70px rgba(123,37,46,.26);
}
.lb-modal h3{ font-family: var(--font-display); font-size: 27px; font-weight: 600; color: var(--bordeaux); line-height: 1.2; margin-bottom: 8px; }
.lb-modal h3 em{ font-style: italic; color: var(--framboise); }
.lb-modal .lb-sub{ font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.lb-modal .lb-note{ font-size: 12.5px; color: var(--text-light); margin-top: 16px; line-height: 1.55; }
.lb-close{
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; cursor: pointer;
  background: var(--off-white); border-radius: 50%; color: var(--bordeaux); font-size: 20px; line-height: 1;
}
.lb-close:hover{ background: var(--blush); }
.lb-frame{ width: 100%; min-height: 420px; border: 0; }
@media (max-width: 600px){ .lb-modal{ padding: 26px 20px; } }

/* ── Blog : recherche, filtres et tri ── */
.blog-tools{ margin: 0 0 10px; }
.bt-search{ position: relative; display: flex; align-items: center; }
.bt-search svg{ position: absolute; left: 16px; width: 19px; height: 19px; color: var(--text-muted); pointer-events: none; }
.bt-search input{
  width: 100%; min-height: 52px; padding: 14px 46px 14px 46px;
  border: 1.5px solid var(--border); border-radius: 50px; background: var(--white);
  font-family: var(--font-body); font-size: 15px; color: var(--text-body); outline: none;
  transition: border-color .2s;
}
.bt-search input:focus{ border-color: var(--framboise); }
.bt-search button{
  position: absolute; right: 12px; width: 30px; height: 30px; border: 0; cursor: pointer;
  background: var(--off-white); border-radius: 50%; color: var(--bordeaux); font-size: 18px; line-height: 1;
}
.bt-filters{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.bt-f{ display: flex; align-items: center; gap: 9px; font-family: var(--font-ui); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.bt-f select{
  min-height: 42px; padding: 8px 34px 8px 14px; border: 1.5px solid var(--border); border-radius: 50px;
  background: var(--white); font-family: var(--font-body); font-size: 14px; color: var(--text-body);
  letter-spacing: normal; text-transform: none; font-weight: 400; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B252E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.bt-f select:focus{ border-color: var(--framboise); outline: none; }
.bt-count{ font-size: 13.5px; color: var(--text-muted); margin-top: 14px; }
.bt-help{ margin-top: 6px; border: 0; }
.bt-help summary{ font-size: 13px; color: var(--bordeaux); cursor: pointer; font-family: var(--font-body); padding: 6px 0; font-weight: 500; }
.bt-help p{ font-size: 13px; color: var(--text-muted); line-height: 1.7; padding-bottom: 8px; }
.bt-help code{ background: var(--blush); border-radius: 5px; padding: 2px 6px; font-size: 12.5px; color: var(--bordeaux); }
@media (max-width: 600px){ .bt-filters{ flex-direction: column; align-items: stretch; } .bt-f{ justify-content: space-between; } }

/* ── EN-TETE DE PAGE : passage au modele clair valide (accueil / a propos) ── */
.page-header{
  background: var(--white) !important; color: var(--text-body) !important;
  padding: 132px 0 78px; position: relative; overflow: hidden;
}
.page-header::after{           /* blob rose, comme sur l'accueil */
  content: ''; position: absolute; top: -90px; right: -110px; width: 520px; height: 470px;
  background: var(--rose-light); opacity: .20; z-index: 0; pointer-events: none;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
.page-header .container{ position: relative; z-index: 1; }
.page-header-shape{ display: none; }          /* l'ancienne forme SVG blanche n'a plus lieu d'etre */
.page-header-eyebrow{ color: var(--framboise) !important; }
.page-header h1{
  color: var(--bordeaux) !important; font-weight: 500;
  font-size: clamp(38px, 5vw, 58px); line-height: 1.06;
}
.page-header h1 em{ color: var(--framboise) !important; font-style: italic; }
.page-header p{ color: var(--text-body) !important; font-size: 18px; line-height: 1.7; max-width: 46ch; }
@media (max-width: 900px){
  .page-header{ padding: 104px 0 56px; }
  .page-header::after{ width: 300px; height: 280px; top: -50px; right: -70px; }
}

/* ── Formulaire HubSpot integre : mise a la charte PichPich ── */
.lb-form{ margin-top: 6px; }
.lb-form .hs-form-field{ margin-bottom: 16px; }
.lb-form label{ display:block; font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--text-body); margin-bottom: 7px; }
.lb-form .hs-form-required{ color: var(--framboise); }
.lb-form input[type=text], .lb-form input[type=email], .lb-form input[type=tel], .lb-form select, .lb-form textarea{
  width: 100% !important; box-sizing: border-box; min-height: 48px; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 12px; background: var(--white);
  font-family: var(--font-body); font-size: 15px; color: var(--text-body); outline: none;
  transition: border-color .2s;
}
.lb-form input:focus, .lb-form select:focus, .lb-form textarea:focus{ border-color: var(--framboise); }
.lb-form input[type=submit]{
  width: 100%; min-height: 50px; margin-top: 6px; padding: 14px 32px; border: 0; cursor: pointer;
  background: var(--framboise); color: #fff; border-radius: 50px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  transition: background .2s, transform .2s;
}
.lb-form input[type=submit]:hover{ background: var(--framboise-dark); transform: translateY(-2px); }
.lb-form .hs-error-msg, .lb-form .hs-error-msgs label{ color: var(--error); font-size: 13px; font-weight: 500; }
.lb-form .hs-richtext, .lb-form .hs-richtext p{ font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.lb-form .hs-richtext a{ color: var(--bordeaux); }
.lb-form .legal-consent-container{ font-size: 12.5px; color: var(--text-light); }
.lb-form .submitted-message{ font-family: var(--font-display); font-size: 20px; color: var(--bordeaux); line-height: 1.4; }
.lb-form .grecaptcha-badge{ display: none !important; }

/* ── Chiffres : meme police pour TOUS les nombres poses dans un blob ── */
.step .k, .step-number, .stat-number, .result-number, .figure .n, .val-num, .car-step-num, .fig .n{
  font-family: var(--font-body) !important;
  font-feature-settings: "tnum" 1;
}
/* les grands nombres de resultats recoivent aussi leur blob */
.result-number{ position: relative; display: inline-flex; align-items: center; justify-content: center; z-index: 1; }
.result-number::before{
  content: ''; position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: 128%; aspect-ratio: 1/.86; min-width: 118px;
  background: rgba(255,255,255,.15); z-index: -1;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
/* hors fond bordeaux, le blob reprend le rose de la charte */
.rabout .result-number::before, .services .result-number::before,
section:not(.results) .result-number::before{ background: var(--rose-light); opacity: .30; }
/* marqueurs de methode : meme blob, meme police */
.step .k{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; z-index: 1; font-size: 23px; font-weight: 600;
}
.step .k::before{
  content: ''; position: absolute; inset: 0; background: var(--rose-light); opacity: .34;
  z-index: -1; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

/* ── Formules d'accompagnement : titres plus presents ── */
.pricing-card h3{
  font-family: var(--font-display) !important; font-size: 25px !important; font-weight: 600 !important;
  color: var(--bordeaux) !important; margin-bottom: 12px !important; line-height: 1.25;
}
.pricing-card{ border-top: 1px solid var(--border) !important; padding-top: 26px !important; text-align: left !important; }
.pricing-grid{ gap: 40px; }

/* ── Photo de la fondatrice : vraie photo decoupee en forme organique ── */
.rabout-shot.photo{ position: relative; width: 100%; max-width: 400px; margin: 0 auto; aspect-ratio: 4/5; }
.rabout-shot.photo img{
  width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 22%;
  border-radius: 52% 48% 45% 55% / 55% 52% 48% 45%;
  box-shadow: 0 18px 44px rgba(123,37,46,.18);
}

/* ── Anciennes courbes SVG blanches : invisibles sur fond clair, on les retire ── */
.methodo-curve, .results-curve, .about-curve, .hero-bg-shape{ display: none; }
.results{ position: relative; overflow: hidden; }
.results::after{      /* on garde une forme organique, mais lisible sur le bordeaux */
  content: ''; position: absolute; top: -120px; left: -140px; width: 520px; height: 470px;
  background: rgba(255,255,255,.05); z-index: 0; pointer-events: none;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
.results .container{ position: relative; z-index: 1; }
/* blobs des grands chiffres sur fond bordeaux : un peu plus lisibles */
.results .result-number::before{ background: rgba(255,255,255,.11); }

/* ── Ligne d'informations sur les cartes du blog ── */
.card-meta{
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-light);
  margin: 6px 0 10px !important;
}
.card-meta i{ font-style: normal; color: var(--border); }
