@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Nunito:wght@300;400;600;700;800;900&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --orange: #fda208;
  --orange-light: #ffb830;
  --orange-pale: #fff8e6;
  --orange-dark: #e8920a;
  --rose: #a35958;
  --pink: #fe7ac1;
  --pink-light: #fff0f9;
  --pink-pale: #ffe4f4;
  --cream: #fff9f0;
  --dark: #2d1f1f;
  --text: #3d2c2c;
  --text-light: #7a5c5c;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(253,162,8,0.13);
  --shadow-hover: 0 20px 60px rgba(253,162,8,0.22);
  --radius: 20px;
  --radius-lg: 40px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,249,240,0.93); backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(253,162,8,0.18);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 68px; transition: all .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(253,162,8,0.13); background: rgba(255,249,240,0.99); }
.nav-logo img { height: 48px; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 700; font-size: .88rem;
  letter-spacing: .4px; position: relative; padding-bottom: 3px; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width .3s; border-radius: 2px;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 8px 20px !important; border-radius: 50px !important;
  transition: all .3s !important; box-shadow: 0 4px 15px rgba(253,162,8,.3);
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253,162,8,.4) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
#accueil {
  min-height: 100vh;
  background: linear-gradient(140deg, #fff9f0 0%, #fff0d6 45%, #ffe4f0 100%);
  display: flex; align-items: center;
  padding: 100px 5% 70px; position: relative; overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .22; pointer-events: none; }
.blob-1 { width: 480px; height: 480px; background: var(--orange); top: -120px; right: -80px; animation: float 9s ease-in-out infinite; }
.blob-2 { width: 320px; height: 320px; background: var(--pink); bottom: -60px; left: -80px; animation: float 11s ease-in-out infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: var(--rose); top: 40%; left: 30%; animation: float 7s ease-in-out infinite; }

.hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,162,8,.12); border: 1.5px solid rgba(253,162,8,.28);
  color: var(--orange-dark); font-weight: 800; font-size: .75rem;
  padding: 5px 15px; border-radius: 50px; margin-bottom: 1.4rem;
  letter-spacing: 1.2px; text-transform: uppercase; animation: fadeInUp .6s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 900; line-height: 1.13; color: var(--dark);
  animation: fadeInUp .6s .1s ease both;
}
.hero-title em { color: var(--orange); font-style: italic; }
.hero-subtitle {
  font-size: 1.03rem; color: var(--text-light); line-height: 1.82;
  margin: 1.4rem 0 1rem; animation: fadeInUp .6s .2s ease both;
}
.hero-location {
  color: var(--rose); font-weight: 700; font-size: .88rem;
  margin-bottom: 1.8rem; animation: fadeInUp .6s .25s ease both;
  display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp .6s .3s ease both; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 14px 30px; border-radius: 50px;
  font-weight: 800; font-size: .98rem; text-decoration: none;
  box-shadow: 0 8px 25px rgba(253,162,8,.38); transition: all .3s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(253,162,8,.5); }
.btn-secondary {
  background: transparent; color: var(--rose); border: 2px solid var(--rose);
  padding: 14px 30px; border-radius: 50px; font-weight: 800; font-size: .98rem;
  text-decoration: none; transition: all .3s; display: inline-flex; align-items: center; gap: 7px;
}
.btn-secondary:hover { background: var(--rose); color: white; transform: translateY(-3px); }
.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; animation: fadeInUp .6s .4s ease both; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--orange); display: block; }
.stat .label { font-size: .72rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.hero-visual { display: flex; justify-content: center; animation: fadeInUp .6s .35s ease both; }
.hero-logo { width: 270px; height: 270px; animation: spin-slow 22s linear infinite; filter: drop-shadow(0 20px 45px rgba(253,162,8,.28)); }

/* ===== SECTIONS BASE ===== */
section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; background: var(--pink-light); color: var(--rose);
  font-weight: 800; font-size: .72rem; padding: 4px 14px;
  border-radius: 50px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 900; color: var(--dark); line-height: 1.2;
}
.section-title em { color: var(--orange); font-style: italic; }
.section-sub { color: var(--text-light); font-size: 1rem; max-width: 580px; margin: .9rem auto 0; line-height: 1.72; }

/* ===== PAIN ===== */
#douleurs { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 1080px; margin: 0 auto; }
.pain-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.8rem;
  border: 1.5px solid rgba(253,162,8,.13); transition: all .3s;
}
.pain-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--orange); }
.pain-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.pain-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: .7rem; }
.pain-card ul { list-style: none; }
.pain-card ul li { color: var(--text-light); font-size: .88rem; padding: 3.5px 0; padding-left: 1.1rem; position: relative; }
.pain-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 900; }

/* ===== OFFRES ===== */
#offres { background: linear-gradient(180deg, var(--cream) 0%, var(--orange-pale) 100%); }
.offres-intro { max-width: 700px; margin: 0 auto 1rem; text-align: center; }
.tarif-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 2px solid var(--orange); border-radius: 16px;
  padding: .8rem 1.5rem; margin-bottom: 3rem; box-shadow: var(--shadow);
}
.tarif-highlight span { font-weight: 800; color: var(--dark); font-size: .92rem; }
.tarif-highlight strong { color: var(--orange); font-size: 1rem; }
.offres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 1080px; margin: 0 auto; }
.offre-card {
  background: white; border-radius: var(--radius-lg); padding: 2.3rem 1.8rem; text-align: center;
  border: 2px solid transparent; box-shadow: var(--shadow); transition: all .3s; position: relative; overflow: hidden;
}
.offre-card.featured { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; }
.offre-card.featured .offre-desc, .offre-card.featured li { color: rgba(255,255,255,.85) !important; }
.offre-card.featured .offre-price-note { color: rgba(255,255,255,.7) !important; }
.offre-card:not(.featured):hover { border-color: var(--orange); transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.offre-card.featured:hover { transform: translateY(-8px) scale(1.02); }
.offre-popular {
  position: absolute; top: -1px; right: 18px;
  background: var(--pink); color: white; font-size: .68rem; font-weight: 800;
  padding: 4px 12px; border-radius: 0 0 10px 10px; letter-spacing: 1px; text-transform: uppercase;
}
.offre-icon { font-size: 2.8rem; margin-bottom: .8rem; }
.offre-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; margin-bottom: .4rem; }
.offre-desc { color: var(--text-light); font-size: .88rem; line-height: 1.6; margin-bottom: 1.4rem; }
.offre-features { list-style: none; margin-bottom: 1.8rem; text-align: left; }
.offre-features li { padding: 5px 0; font-size: .88rem; color: var(--text); display: flex; align-items: flex-start; gap: 7px; }
.offre-features li::before { content: '✓'; color: var(--orange); font-weight: 900; }
.offre-card.featured .offre-features li::before { color: white; }
.offre-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 900; color: var(--orange); }
.offre-card.featured .offre-price { color: white; }
.offre-price-note { font-size: .78rem; color: var(--text-light); display: block; margin-bottom: 1.4rem; }
.btn-offre {
  display: block; width: 100%; padding: 11px; border-radius: 50px;
  font-weight: 800; text-decoration: none; transition: all .3s; font-size: .92rem;
  background: var(--orange); color: white; border: 2px solid var(--orange);
}
.offre-card.featured .btn-offre { background: white; color: var(--orange-dark); border-color: white; }
.btn-offre:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(253,162,8,.3); }
.offres-note { text-align: center; margin-top: 1.8rem; color: var(--text-light); font-size: .88rem; }

/* ===== EBOOK ===== */
#ebook { background: var(--white); }
.ebook-wrap { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.ebook-img-wrap { display: flex; justify-content: center; }
.ebook-img { width: 250px; filter: drop-shadow(0 18px 40px rgba(253,162,8,.32)); animation: float 6s ease-in-out infinite; }
.ebook-content h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 900; color: var(--dark); margin-bottom: .8rem; }
.ebook-content h2 em { color: var(--orange); font-style: italic; }
.ebook-content > p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.4rem; }

/* ACCORDÉON EBOOK - repris de la landing */
.accordion { margin-bottom: 1.8rem; }
.acc-item { border: 1.5px solid rgba(253,162,8,.2); border-radius: 12px; margin-bottom: .65rem; overflow: hidden; transition: border-color .3s; }
.acc-item.open { border-color: var(--orange); }
.acc-header {
  padding: .95rem 1.1rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream); font-weight: 700; color: var(--dark);
  transition: background .25s; font-size: .92rem; gap: 1rem; user-select: none;
}
.acc-header:hover { background: rgba(253,162,8,.08); }
.acc-item.open .acc-header { background: rgba(253,162,8,.1); color: var(--orange-dark); }
.acc-icon { font-size: 1.1rem; transition: transform .3s; min-width: 18px; text-align: center; flex-shrink: 0; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 1.1rem; background: white; }
.acc-item.open .acc-body { max-height: 500px; padding: .9rem 1.1rem; }
.acc-body p, .acc-body ul { color: var(--text-light); font-size: .88rem; line-height: 1.72; }
.acc-body ul { list-style: none; }
.acc-body ul li { padding: 3px 0 3px 1.1rem; position: relative; }
.acc-body ul li::before { content: '🍊'; position: absolute; left: 0; font-size: .75rem; top: 4px; }

.ebook-price-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius); padding: 1.8rem; color: white; text-align: center; margin-bottom: 1.5rem;
}
.ebook-price-big { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; line-height: 1; }
.ebook-price-label { font-size: .88rem; opacity: .9; margin-top: .3rem; }
.btn-ebook {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; border-radius: 50px;
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white;
  box-shadow: 0 8px 25px rgba(253,162,8,.38); transition: all .3s;
}
.btn-ebook:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(253,162,8,.5); }
.ebook-secure { text-align: center; font-size: .78rem; color: var(--text-light); margin-top: .6rem; }

/* PODCAST TEASER */
#podcast { background: linear-gradient(135deg, var(--pink-light), var(--orange-pale)); }
.podcast-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.podcast-card {
  background: white; border-radius: var(--radius-lg); padding: 3rem 2.5rem;
  box-shadow: var(--shadow); border: 2px solid rgba(254,122,193,.25);
}
.podcast-icon { font-size: 4rem; margin-bottom: 1rem; }
.podcast-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: .8rem; }
.podcast-card p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.badge-soon {
  display: inline-block; background: var(--pink); color: white;
  font-size: .75rem; font-weight: 800; padding: 5px 16px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ===== TEMOIGNAGES ===== */
#temoignages { background: linear-gradient(135deg, #fff9f0, #ffe4f0); }
.temoignages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; max-width: 880px; margin: 0 auto 2rem; }
.temo-card {
  background: white; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--orange); transition: all .3s;
}
.temo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.stars { color: var(--orange); font-size: 1.05rem; margin-bottom: .7rem; }
.temo-text { color: var(--text); line-height: 1.72; font-size: .93rem; margin-bottom: 1rem; font-style: italic; }
.temo-author { font-weight: 800; color: var(--dark); font-size: .88rem; }
.temo-date { color: var(--text-light); font-size: .78rem; }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1.5px solid #e0e0e0; border-radius: 12px;
  padding: 8px 16px; font-size: .82rem; color: #555; font-weight: 600; margin-top: .5rem;
}

/* ===== BIO ===== */
#bio { background: var(--white); }
.bio-wrap { max-width: 950px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.bio-left { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.bio-sig-img { width: 210px; filter: drop-shadow(0 12px 28px rgba(253,162,8,.28)); }
.bio-name { font-family: 'Dancing Script', cursive; font-size: 2rem; color: var(--rose); }
.bio-title { font-size: .8rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.bio-pills { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--pink-light); color: var(--rose);
  padding: 4px 12px; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
.bio-right blockquote {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic;
  color: var(--orange-dark); border-left: 4px solid var(--orange);
  padding-left: 1.4rem; margin-bottom: 1.4rem; line-height: 1.6;
}
.bio-right p { color: var(--text); line-height: 1.88; margin-bottom: 1.1rem; font-size: .95rem; }
.bio-right p strong { color: var(--dark); }
.bio-right p.highlight { color: var(--orange-dark); font-weight: 700; font-size: 1rem; }
.bio-siren { background: var(--cream); border-radius: 12px; padding: .9rem 1.2rem; font-size: .8rem; color: var(--text-light); margin-top: 1rem; border: 1px solid rgba(253,162,8,.15); }
.bio-siren strong { color: var(--dark); }

/* ===== FAQ ===== */
#faq { background: var(--cream); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid rgba(253,162,8,.18); }
.faq-q {
  padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 700; color: var(--dark); font-size: .97rem;
  transition: color .25s; gap: 1rem; user-select: none;
}
.faq-q:hover, .faq-q.open { color: var(--orange); }
.faq-arr { font-size: .9rem; transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-arr { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-ans p { padding-bottom: 1.2rem; color: var(--text-light); line-height: 1.8; font-size: .92rem; }

/* ===== BLOG ===== */
#blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; max-width: 1080px; margin: 0 auto 2.5rem; }
.blog-card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden; transition: all .3s;
  border: 1.5px solid rgba(253,162,8,.13);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); border-color: var(--orange); }
.blog-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--orange-light), var(--pink)); }
.blog-body { padding: 1.4rem; }
.blog-tag { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--orange); margin-bottom: .4rem; display: block; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: .5rem; line-height: 1.38; }
.blog-excerpt { color: var(--text-light); font-size: .83rem; line-height: 1.6; margin-bottom: .9rem; }
.blog-link { color: var(--orange); font-weight: 800; font-size: .83rem; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.blog-link:hover { gap: 8px; }
.podcast-blog-note {
  background: var(--pink-light); border-radius: var(--radius); padding: 1.5rem 2rem;
  border: 1.5px solid rgba(254,122,193,.3); text-align: center; max-width: 1080px; margin: 0 auto;
}
.podcast-blog-note p { color: var(--text); font-size: .9rem; line-height: 1.7; }
.podcast-blog-note strong { color: var(--rose); }

/* ===== CONTACT ===== */
#contact { background: linear-gradient(135deg, #fff9f0, #ffe4f0); }
.contact-wrap { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-zcal {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 17px 38px; border-radius: 50px; font-size: 1.08rem;
  font-weight: 800; text-decoration: none; box-shadow: 0 8px 30px rgba(253,162,8,.38);
  transition: all .3s; margin: 1.8rem 0;
}
.contact-zcal:hover { transform: translateY(-4px); box-shadow: 0 15px 42px rgba(253,162,8,.5); }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-bottom: 2rem; }
.contact-card {
  background: white; border-radius: var(--radius); padding: 1.3rem;
  box-shadow: var(--shadow); transition: all .3s; text-decoration: none; color: var(--text);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cc-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.cc-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 700; margin-bottom: .2rem; }
.cc-val { font-weight: 800; color: var(--dark); font-size: .85rem; }
.seo-zone {
  background: rgba(253,162,8,.07); border-radius: var(--radius);
  border: 1.5px solid rgba(253,162,8,.18); padding: 1.3rem 1.5rem; margin-top: 1.5rem;
}
.seo-zone p { font-size: .82rem; color: var(--text-light); line-height: 1.8; }
.seo-zone strong { color: var(--orange-dark); }

/* ===== PAGES LÉGALES ===== */
.legal-nav { background: var(--white); padding: 3rem 5%; border-top: 2px solid rgba(253,162,8,.15); }
.legal-nav h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dark); margin-bottom: 1rem; text-align: center; }
.legal-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.legal-link {
  color: var(--rose); font-size: .82rem; font-weight: 700; text-decoration: none;
  padding: 5px 14px; border: 1.5px solid rgba(163,89,88,.25); border-radius: 50px;
  transition: all .25s;
}
.legal-link:hover { background: var(--rose); color: white; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: rgba(255,255,255,.65);
  padding: 2.8rem 5%; text-align: center;
}
.footer-logo img { height: 60px; margin-bottom: .8rem; filter: drop-shadow(0 0 6px rgba(253,162,8,.6)) brightness(1.1); }
.footer-tagline { font-family: 'Dancing Script', cursive; font-size: 1.25rem; color: var(--orange); margin-bottom: 1.3rem; }
.footer-links { display: flex; gap: 1.3rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.3rem; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .83rem; transition: color .25s; }
.footer-links a:hover { color: var(--orange); }
.footer-socials { display: flex; gap: .8rem; justify-content: center; margin-bottom: 1.3rem; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem; transition: all .25s;
}
.soc-btn:hover { background: var(--orange); transform: translateY(-3px); }
.footer-seo { font-size: .72rem; color: rgba(255,255,255,.28); line-height: 1.85; max-width: 800px; margin: 0 auto .8rem; }
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.3rem; margin-top: .8rem; line-height: 1.7; }
.footer-legal a { color: rgba(254,122,193,.7); text-decoration: none; }
.footer-legal a:hover { color: var(--pink); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo { width: 200px; }
  .hero-location { justify-content: center; }
  .pain-grid, .offres-grid, .blog-grid { grid-template-columns: 1fr; }
  .ebook-wrap { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .bio-wrap { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; width: 100%; background: rgba(255,249,240,.99); flex-direction: column; padding: 1rem 5%; gap: 0; border-bottom: 2px solid rgba(253,162,8,.18); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(253,162,8,.1); }
  .nav-links a { display: block; padding: 12px 0 !important; }
  .hamburger { display: flex; }
}

/* ===== SERVICES TARIFS ===== */
#services { background: linear-gradient(180deg, var(--cream) 0%, var(--orange-pale) 100%); }
.services-tabs { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 24px; border-radius: 50px; font-weight: 800; font-size: .88rem;
  border: 2px solid var(--orange); cursor: pointer; transition: all .3s;
  background: transparent; color: var(--orange);
}
.tab-btn.active { background: var(--orange); color: white; box-shadow: 0 6px 20px rgba(253,162,8,.35); }
.tab-btn:hover:not(.active) { background: var(--orange-pale); }
.tab-content { display: none; max-width: 1080px; margin: 0 auto; }
.tab-content.active { display: block; }

.tarifs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.tarif-card {
  background: white; border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center;
  border: 2px solid transparent; box-shadow: var(--shadow); transition: all .3s; position: relative;
}
.tarif-card.best {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fff8e6, white);
}
.tarif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--orange); }
.tarif-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white; font-size: .68rem; font-weight: 800;
  padding: 3px 14px; border-radius: 50px; white-space: nowrap; letter-spacing: 1px; text-transform: uppercase;
}
.tarif-icon { font-size: 2.2rem; margin-bottom: .7rem; }
.tarif-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--dark); margin-bottom: .3rem; }
.tarif-duration { font-size: .78rem; color: var(--text-light); font-weight: 700; margin-bottom: 1rem; }
.tarif-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.tarif-price span { font-size: .85rem; color: var(--text-light); font-weight: 600; display: block; margin-top: .2rem; }
.tarif-gift {
  background: rgba(253,162,8,.1); border-radius: 12px; padding: .8rem;
  font-size: .82rem; color: var(--orange-dark); font-weight: 700; margin-top: 1rem; text-align: center;
}

.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.office-card {
  background: white; border-radius: var(--radius-lg); padding: 2.2rem 1.8rem;
  border: 2px solid transparent; box-shadow: var(--shadow); transition: all .3s; position: relative;
}
.office-card.best { border-color: var(--orange); background: linear-gradient(160deg, #fff8e6, white); }
.office-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); }
.office-icon { font-size: 2rem; margin-bottom: .6rem; }
.office-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--dark); margin-bottom: .2rem; }
.office-hours { font-size: .8rem; color: var(--text-light); font-weight: 700; margin-bottom: 1rem; }
.office-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--orange); margin-bottom: 1.2rem; }
.office-features { list-style: none; margin-bottom: 1.5rem; }
.office-features li { padding: 4px 0; font-size: .85rem; color: var(--text); display: flex; align-items: flex-start; gap: 7px; }
.office-features li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; }
.office-dispo {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-light); color: var(--rose); font-size: .75rem; font-weight: 800;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 1.5rem;
}
.office-infos { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.5rem; }
.office-info-item { background: var(--cream); border-radius: 10px; padding: .6rem; text-align: center; font-size: .78rem; }
.office-info-item strong { display: block; color: var(--orange-dark); font-size: .85rem; }

.ateliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.atelier-card {
  background: white; border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center;
  box-shadow: var(--shadow); border: 1.5px solid rgba(253,162,8,.15); transition: all .3s;
}
.atelier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--orange); }
.atelier-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.atelier-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--dark); margin-bottom: .4rem; }
.atelier-desc { color: var(--text-light); font-size: .85rem; line-height: 1.6; margin-bottom: 1rem; }
.atelier-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--orange); }
.atelier-price span { font-size: .8rem; color: var(--text-light); font-weight: 600; display: block; }

/* ===== TEMOIGNAGES AMELIORES ===== */
.temo-grid-4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; max-width: 1100px; margin: 0 auto 2rem; }

/* ===== PODCAST ===== */
#podcast { background: linear-gradient(135deg, var(--pink-light), var(--orange-pale)); }
.podcast-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.podcast-card { background: white; border-radius: var(--radius-lg); padding: 3rem 2.5rem; box-shadow: var(--shadow); border: 2px solid rgba(254,122,193,.25); }
.podcast-card h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--dark); margin: 1rem 0 .8rem; }
.podcast-card p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE SERVICES ===== */
@media (max-width: 960px) {
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: 1fr; }
  .ateliers-grid { grid-template-columns: 1fr; }
  .temo-grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .tarifs-grid { grid-template-columns: 1fr; }
}

/* Logo hero statique */
.hero-logo-static {
  width: 400px; height: 400px;
  filter: drop-shadow(0 20px 45px rgba(253,162,8,.28));
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 960px) {
  .hero-logo-static { width: 240px; height: 240px; }
}

/* Pain cards - phrases clients */
.pain-card ul li em {
  display: block; color: var(--rose); font-weight: 800;
  font-style: italic; font-size: .88rem; margin-bottom: 2px;
}
.pain-card ul li span {
  color: var(--text-light); font-size: .82rem; line-height: 1.5;
}
.pain-card ul li { padding: 6px 0 6px 1.1rem; }

/* ===== CHATBOT ===== */
#pip-chat-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none; cursor: pointer;
  box-shadow: 0 6px 25px rgba(253,162,8,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; transition: all .3s;
  animation: pip-pulse 2.5s ease-in-out infinite;
}
#pip-chat-btn:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(253,162,8,.6); }
@keyframes pip-pulse {
  0%,100% { box-shadow: 0 6px 25px rgba(253,162,8,.5); }
  50% { box-shadow: 0 6px 35px rgba(253,162,8,.8), 0 0 0 8px rgba(253,162,8,.15); }
}

#pip-chat-window {
  position: fixed; bottom: 104px; right: 28px; z-index: 9998;
  width: 360px; max-height: 520px;
  background: white; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(45,31,31,.18);
  display: none; flex-direction: column; overflow: hidden;
  border: 1.5px solid rgba(253,162,8,.2);
  animation: pip-slidein .3s ease;
}
#pip-chat-window.open { display: flex; }
@keyframes pip-slidein {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pip-chat-header {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: 10px;
}
.pip-chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.pip-chat-header-info { flex: 1; }
.pip-chat-header-name { color: white; font-weight: 800; font-size: .95rem; }
.pip-chat-header-status { color: rgba(255,255,255,.85); font-size: .75rem; display: flex; align-items: center; gap: 4px; }
.pip-chat-header-status::before { content: ''; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; }
.pip-close-btn { background: none; border: none; color: white; font-size: 1.3rem; cursor: pointer; padding: 2px 6px; border-radius: 6px; transition: background .2s; }
.pip-close-btn:hover { background: rgba(255,255,255,.2); }

.pip-chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: .75rem;
  background: #fafafa;
  scrollbar-width: thin; scrollbar-color: rgba(253,162,8,.3) transparent;
}
.pip-msg { max-width: 82%; display: flex; flex-direction: column; gap: 3px; }
.pip-msg.bot { align-self: flex-start; }
.pip-msg.user { align-self: flex-end; }
.pip-msg-bubble {
  padding: .7rem 1rem; border-radius: 16px; font-size: .88rem; line-height: 1.55;
}
.pip-msg.bot .pip-msg-bubble {
  background: white; color: var(--dark);
  border: 1.5px solid rgba(253,162,8,.2);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.pip-msg.user .pip-msg-bubble {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border-bottom-right-radius: 4px;
}
.pip-msg-time { font-size: .68rem; color: #aaa; padding: 0 4px; }
.pip-msg.user .pip-msg-time { text-align: right; }

.pip-typing {
  display: none; align-self: flex-start;
  background: white; border: 1.5px solid rgba(253,162,8,.2);
  border-radius: 16px; border-bottom-left-radius: 4px;
  padding: .7rem 1rem; gap: 5px; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.pip-typing.show { display: flex; }
.pip-typing span {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pip-dot 1.2s ease-in-out infinite;
}
.pip-typing span:nth-child(2) { animation-delay: .2s; }
.pip-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes pip-dot { 0%,80%,100% { transform: scale(.7); opacity:.5; } 40% { transform: scale(1); opacity:1; } }

.pip-suggestions {
  padding: .5rem 1rem .25rem; display: flex; flex-wrap: wrap; gap: .4rem; background: #fafafa;
}
.pip-sug-btn {
  background: var(--orange-pale); color: var(--orange-dark);
  border: 1.5px solid rgba(253,162,8,.3); border-radius: 50px;
  padding: 5px 12px; font-size: .78rem; font-weight: 700; cursor: pointer;
  transition: all .2s; font-family: 'Nunito', sans-serif;
}
.pip-sug-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }

.pip-chat-input-area {
  padding: .75rem 1rem; border-top: 1.5px solid rgba(253,162,8,.15);
  display: flex; gap: .5rem; background: white;
}
#pip-input {
  flex: 1; border: 1.5px solid rgba(253,162,8,.25); border-radius: 50px;
  padding: 8px 14px; font-size: .88rem; font-family: 'Nunito', sans-serif;
  color: var(--dark); outline: none; transition: border-color .2s;
}
#pip-input:focus { border-color: var(--orange); }
#pip-send {
  background: var(--orange); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
#pip-send:hover { background: var(--orange-dark); transform: scale(1.08); }

@media (max-width: 420px) {
  #pip-chat-window { width: calc(100vw - 32px); right: 16px; bottom: 96px; }
  #pip-chat-btn { right: 16px; bottom: 20px; }
}
