/*!
 * FDE Landings · Design System
 * Système design dédié aux pages de conversion (sans header/footer).
 * Toutes les classes sont préfixées .fde- pour éviter toute collision.
 * À étendre au fil du temps : composants atomiques + spécifiques.
 *
 * @package Femmes_Exception
 */

/* ============ VARIABLES ============ */
.fde-landing {
  --fde-bord: #6E1C3A;
  --fde-bord-deep: #4A1226;
  --fde-creme: #F3EBD8;
  --fde-creme-light: #FAF6ED;
  --fde-creme-soft: #ECE2C9;
  --fde-creme-dark: #E8DEC5;
  --fde-gold: #C9A96E;
  --fde-gold-light: #DBC393;
  --fde-gold-deep: #A58850;
  --fde-ink: #2a1a20;
  --fde-green: #5a8a4a;
  --fde-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --fde-sans: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ BODY & LAYOUT ============ */
body.fde-landing {
  font-family: var(--fde-sans);
  background: var(--fde-creme);
  color: var(--fde-ink);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.fde-landing-main {
  position: relative;
  z-index: 5;
  max-width: 460px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* ============ BACKGROUND DÉCORATIF ============ */
.fde-landing::before,
.fde-landing::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
.fde-landing::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(110,28,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(201,169,110,0.08) 0%, transparent 50%);
}

/* ============ HEADER MINIMAL ============ */
.fde-brand-top {
  text-align: center;
  font-family: var(--fde-serif);
  font-size: 12px;
  color: var(--fde-bord);
  letter-spacing: 0.32em;
  opacity: 0.6;
  font-weight: 500;
  padding: 16px 0 28px;
  text-transform: uppercase;
}

/* ============ BANDEAU PROMO PERSISTANT ============ */
.fde-promo-banner {
  background: linear-gradient(90deg, var(--fde-bord) 0%, var(--fde-bord-deep) 100%);
  color: var(--fde-gold);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  position: sticky;
  top: 0;
  z-index: 60;
  cursor: pointer;
  text-decoration: none;
}
.fde-promo-banner .fde-flame {
  display: inline-block;
  animation: fdeFlicker 1.5s infinite;
}
.fde-promo-banner .fde-promo-text {
  color: var(--fde-creme);
  font-family: var(--fde-serif);
  font-size: 13px;
  font-style: italic;
}
.fde-promo-banner .fde-countdown-mini {
  color: var(--fde-gold);
  font-family: var(--fde-serif);
  font-weight: 600;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
@keyframes fdeFlicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.95); }
}

/* ============ AVATAR ============ */
.fde-avatar-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 22px;
}
.fde-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 0.5px solid var(--fde-gold);
  opacity: 0.4;
}
.fde-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--fde-bord);
  border: 1.5px solid var(--fde-gold);
  box-shadow: 0 20px 50px -20px rgba(110,28,58,0.4);
  display: block;
}
.fde-avatar img,
.fde-avatar svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.fde-avatar.fde-avatar-small { width: 78px; height: 78px; }

/* ============ HERO TYPOGRAPHIE ============ */
.fde-hero {
  text-align: center;
  margin-bottom: 28px;
}
.fde-name-display {
  font-family: var(--fde-serif);
  font-size: clamp(34px, 5vw, 42px);
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.fde-role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fde-bord);
  opacity: 0.65;
  font-weight: 400;
  margin: 0 0 28px;
}
.fde-welcome {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--fde-bord);
  line-height: 1.45;
  margin: 0;
}
.fde-welcome-divider {
  width: 50px;
  height: 1px;
  background: var(--fde-gold);
  margin: 28px auto 32px;
  opacity: 0.6;
  border: none;
}

/* ============ EYEBROW & TITRES ============ */
.fde-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-gold);
  margin: 16px 0 10px;
  font-weight: 500;
  text-align: center;
}
.fde-h1 {
  font-family: var(--fde-serif);
  font-size: clamp(26px, 4vw, 32px);
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 14px;
  text-align: center;
}
.fde-h2 {
  font-family: var(--fde-serif);
  font-size: clamp(22px, 3.5vw, 26px);
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 10px;
}
.fde-tagline {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--fde-bord);
  opacity: 0.85;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* ============ CARTES (intention cards) ============ */
.fde-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 0.5px solid rgba(110,28,58,0.12);
  border-radius: 16px;
  padding: 17px 20px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.fde-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(201,169,110,0.05) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.fde-card:hover {
  border-color: var(--fde-gold);
  box-shadow: 0 10px 30px -10px rgba(110,28,58,0.2);
  transform: translateY(-2px);
}
.fde-card:hover::before { transform: translateX(100%); }
.fde-card:active { transform: translateY(0) scale(0.99); }
.fde-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--fde-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fde-bord);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.fde-card-icon svg { width: 22px; height: 22px; }
.fde-card-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.fde-card-title {
  font-family: var(--fde-serif);
  font-size: 17px;
  color: var(--fde-bord);
  margin: 0 0 3px;
  font-weight: 500;
  line-height: 1.25;
}
.fde-card-sub {
  font-size: 13px;
  color: var(--fde-bord);
  opacity: 0.6;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}
.fde-card-arrow {
  color: var(--fde-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.fde-card:hover .fde-card-arrow { transform: translateX(4px); }
.fde-card-arrow svg { width: 20px; height: 20px; }

/* ============ CARTE FEATURED (Phare) ============ */
.fde-card.fde-featured {
  background: var(--fde-bord);
  border: none;
  margin-top: 22px;
  position: relative;
}
.fde-card.fde-featured .fde-card-icon {
  background: rgba(201,169,110,0.18);
  color: var(--fde-gold);
}
.fde-card.fde-featured .fde-card-title { color: var(--fde-creme); }
.fde-card.fde-featured .fde-card-sub { color: var(--fde-gold); opacity: 0.9; }
.fde-card.fde-featured .fde-card-arrow { color: var(--fde-gold); }
.fde-card.fde-featured::before {
  background: linear-gradient(120deg, transparent 30%, rgba(201,169,110,0.15) 50%, transparent 70%);
}
.fde-card.fde-featured::after {
  content: 'Phare';
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--fde-gold);
  color: var(--fde-bord);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
}
.fde-card.fde-featured:hover { background: var(--fde-bord-deep); }

/* ============ DIVIDER ============ */
.fde-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 18px;
}
.fde-divider .fde-divider-line {
  flex: 1;
  height: 0.5px;
  background: rgba(110,28,58,0.18);
}
.fde-divider .fde-divider-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fde-bord);
  opacity: 0.55;
  font-weight: 500;
}

/* ============ CARTE NANA (filet de sécurité IA) ============ */
.fde-card-nana {
  background: var(--fde-creme-soft);
  border: 0.5px solid rgba(201,169,110,0.4);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.fde-card-nana:hover {
  background: var(--fde-gold-light);
  border-color: var(--fde-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(201,169,110,0.4);
}
.fde-nana-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6E1C3A, #C9A96E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  position: relative;
}
.fde-nana-avatar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid var(--fde-creme-soft);
}
.fde-nana-avatar svg { width: 20px; height: 20px; }
.fde-card-nana .fde-nana-body { flex: 1; }
.fde-card-nana .fde-nana-title {
  font-family: var(--fde-serif);
  font-size: 16px;
  color: var(--fde-bord);
  margin: 0 0 2px;
  font-weight: 500;
  line-height: 1.25;
}
.fde-card-nana .fde-nana-title small {
  font-family: var(--fde-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--fde-gold);
  color: var(--fde-bord);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 7px;
  vertical-align: 2px;
  font-weight: 500;
}
.fde-card-nana .fde-nana-sub {
  font-size: 12px;
  color: var(--fde-bord);
  opacity: 0.7;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}
.fde-card-nana .fde-card-arrow { color: var(--fde-bord); }
.fde-card-nana:hover .fde-card-arrow { transform: translateX(4px); }

/* ============ CTA BUTTONS ============ */
.fde-cta {
  display: block;
  background: var(--fde-bord);
  color: var(--fde-creme);
  font-family: var(--fde-serif);
  font-size: 17px;
  padding: 17px 22px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid var(--fde-bord);
  cursor: pointer;
  width: 100%;
  font-family: var(--fde-serif);
}
.fde-cta:hover { background: var(--fde-bord-deep); letter-spacing: 0.06em; }
.fde-cta:active { transform: scale(0.98); }
.fde-cta.fde-cta-gold {
  background: var(--fde-gold);
  color: var(--fde-bord);
  border-color: var(--fde-gold);
}
.fde-cta.fde-cta-gold:hover { background: var(--fde-gold-light); }
.fde-cta.fde-cta-outline {
  background: transparent;
  color: var(--fde-bord);
  border-color: var(--fde-bord);
}
.fde-cta.fde-cta-outline:hover { background: var(--fde-bord); color: var(--fde-creme); }
.fde-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--fde-bord);
  opacity: 0.65;
  font-weight: 400;
}
.fde-cta-trust svg { width: 13px; height: 13px; }

/* ============ PRICE BLOCK ============ */
.fde-price-block { text-align: center; padding: 28px 0; }
.fde-price-old {
  font-size: 13px;
  color: var(--fde-bord);
  opacity: 0.55;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.fde-price-now {
  font-family: var(--fde-serif);
  font-size: 44px;
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.fde-price-urgency {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.fde-price-savings {
  display: inline-block;
  background: var(--fde-green);
  color: white;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 6px 0 14px;
  text-transform: uppercase;
}

/* ============ BULLETS ============ */
.fde-bullet {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.fde-bullet:last-child { margin-bottom: 0; }
.fde-bullet-mark { color: var(--fde-gold); flex-shrink: 0; margin-top: 1px; }
.fde-bullet-mark svg { width: 18px; height: 18px; }
.fde-bullet-text {
  font-family: var(--fde-serif);
  font-size: 15px;
  color: var(--fde-bord);
  line-height: 1.45;
}

/* ============ SECTION LABEL ============ */
.fde-section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-bord);
  opacity: 0.55;
  margin-bottom: 14px;
  font-weight: 500;
  text-align: center;
}

/* ============ GUARANTEE ============ */
.fde-guarantee {
  text-align: center;
  padding: 24px 0;
  border-top: 0.5px solid rgba(110,28,58,0.1);
}
.fde-guarantee-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--fde-creme);
  color: var(--fde-bord);
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.fde-guarantee-icon svg { width: 22px; height: 22px; }
.fde-guarantee-text {
  font-family: var(--fde-serif);
  font-size: 14px;
  color: var(--fde-bord);
  line-height: 1.5;
  font-style: italic;
}

/* ============ TÉMOIGNAGE ============ */
.fde-testimonial {
  font-family: var(--fde-serif);
  font-size: 16px;
  color: var(--fde-bord);
  text-align: center;
  line-height: 1.55;
  position: relative;
  padding: 0 8px;
}
.fde-testimonial::before, .fde-testimonial::after {
  font-family: var(--fde-serif);
  color: var(--fde-gold);
  font-size: 22px;
  opacity: 0.6;
}
.fde-testimonial::before { content: '"'; margin-right: 2px; }
.fde-testimonial::after { content: '"'; margin-left: 2px; }

/* ============ FOOTER MINIMAL ============ */
.fde-footer-url {
  text-align: center;
  margin-top: 50px;
  padding: 22px 0;
  font-size: 11px;
  color: var(--fde-bord);
  opacity: 0.4;
  letter-spacing: 0.25em;
  font-weight: 400;
  text-transform: uppercase;
}

/* ============ ANIMATIONS ============ */
.fde-fade-up {
  animation: fdeFadeUp 0.7s ease-out backwards;
}
.fde-fade-up:nth-child(1) { animation-delay: 0.05s; }
.fde-fade-up:nth-child(2) { animation-delay: 0.12s; }
.fde-fade-up:nth-child(3) { animation-delay: 0.19s; }
.fde-fade-up:nth-child(4) { animation-delay: 0.26s; }
.fde-fade-up:nth-child(5) { animation-delay: 0.33s; }
.fde-fade-up:nth-child(6) { animation-delay: 0.40s; }
.fde-fade-up:nth-child(7) { animation-delay: 0.47s; }
@keyframes fdeFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  .fde-landing-main { padding: 24px 18px 50px; }
  .fde-brand-top { font-size: 11px; letter-spacing: 0.3em; padding: 12px 0 24px; }
  .fde-avatar-wrap, .fde-avatar { width: 100px; height: 100px; }
  .fde-card-title { font-size: 16px; }
  .fde-card-sub { font-size: 12.5px; }
}


/* ============================================================
 * INSTITUT LANDING : composants premium
 * ============================================================ */

/* Reset for landing main when used full-bleed */
.fde-landing-main.fde-landing-main--full {
  max-width: 100%;
  padding: 0;
}

/* ============ INSTITUT HERO ============ */
.fde-institut-hero {
  background: linear-gradient(180deg, var(--fde-bord) 0%, var(--fde-bord-deep) 100%);
  color: var(--fde-creme);
  padding: 56px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fde-institut-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,169,110,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(201,169,110,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.fde-institut-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}
.fde-institut-hero .fde-eyebrow {
  color: var(--fde-gold);
  margin-top: 0;
  margin-bottom: 16px;
}
.fde-institut-hero-title {
  font-family: var(--fde-serif);
  font-size: clamp(36px, 6vw, 52px);
  color: var(--fde-creme);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.fde-institut-hero-title em {
  font-style: italic;
  color: var(--fde-gold);
}
.fde-institut-hero-divider {
  width: 50px;
  height: 1px;
  background: var(--fde-gold);
  border: none;
  margin: 22px auto;
  opacity: 0.7;
}
.fde-institut-hero-tagline {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: clamp(16px, 2.8vw, 19px);
  color: var(--fde-creme);
  opacity: 0.92;
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 460px;
}
.fde-institut-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  border: 0.5px solid rgba(201,169,110,0.3);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  color: var(--fde-gold);
  letter-spacing: 0.08em;
}
.fde-institut-hero-meta svg { width: 14px; height: 14px; }

/* ============ SECTIONS GENERIC ============ */
.fde-section-block {
  padding: 56px 24px;
  max-width: 540px;
  margin: 0 auto;
}
.fde-section-block.fde-section-cream { background: var(--fde-creme); }
.fde-section-block.fde-section-cream-deep { background: var(--fde-creme-soft); }
.fde-section-block.fde-section-white { background: white; }
.fde-section-bordeaux {
  background: var(--fde-bord);
  color: var(--fde-creme);
  padding: 50px 24px 56px;
}
.fde-section-bordeaux .fde-section-eyebrow { color: var(--fde-gold); }
.fde-section-bordeaux .fde-section-title { color: var(--fde-creme); }
.fde-section-bordeaux .fde-section-tagline { color: var(--fde-creme); opacity: 0.85; }

.fde-section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fde-gold);
  font-weight: 500;
  text-align: center;
  margin: 0 0 14px;
}
.fde-section-title {
  font-family: var(--fde-serif);
  font-size: clamp(26px, 4vw, 34px);
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 12px;
}
.fde-section-tagline {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fde-bord);
  opacity: 0.8;
  line-height: 1.55;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 420px;
}

/* ============ FORMATIONS GRID ============ */
.fde-formations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .fde-formations-grid { grid-template-columns: 1fr 1fr; }
}
.fde-formation-card {
  background: white;
  border: 0.5px solid rgba(110,28,58,0.12);
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.3s ease;
  position: relative;
}
.fde-formation-card:hover {
  border-color: var(--fde-gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px rgba(110,28,58,0.18);
}
.fde-formation-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--fde-creme);
  color: var(--fde-bord);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.fde-formation-card-icon svg { width: 20px; height: 20px; }
.fde-formation-card-title {
  font-family: var(--fde-serif);
  font-size: 19px;
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px;
}
.fde-formation-card-desc {
  font-size: 13.5px;
  color: var(--fde-bord);
  opacity: 0.75;
  line-height: 1.55;
  margin: 0;
}

/* ============ INCLUDED LIST ============ */
.fde-included-grid {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}
.fde-included-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fde-included-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201,169,110,0.15);
  color: var(--fde-gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fde-section-bordeaux .fde-included-icon {
  background: rgba(201,169,110,0.18);
  color: var(--fde-gold);
}
.fde-included-icon svg { width: 18px; height: 18px; }
.fde-included-body { flex: 1; padding-top: 1px; }
.fde-included-title {
  font-family: var(--fde-serif);
  font-size: 17px;
  color: inherit;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 3px;
}
.fde-section-bordeaux .fde-included-title { color: var(--fde-creme); }
.fde-included-desc {
  font-size: 13px;
  color: inherit;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0;
}

/* ============ TÉMOIGNAGE BLOCK ============ */
.fde-temoignage {
  text-align: center;
  padding: 24px 0;
}
.fde-temoignage-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1.5px solid var(--fde-gold);
  background: var(--fde-bord);
  box-shadow: 0 14px 30px -10px rgba(110,28,58,0.3);
}
.fde-temoignage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fde-temoignage-quote {
  font-family: var(--fde-serif);
  font-size: clamp(18px, 3vw, 22px);
  font-style: italic;
  color: var(--fde-bord);
  line-height: 1.5;
  margin: 0 auto 16px;
  max-width: 440px;
}
.fde-temoignage-quote::before {
  content: '"';
  color: var(--fde-gold);
  font-size: 28px;
  margin-right: 4px;
  vertical-align: -4px;
}
.fde-temoignage-quote::after {
  content: '"';
  color: var(--fde-gold);
  font-size: 28px;
  margin-left: 2px;
  vertical-align: -4px;
}
.fde-temoignage-author {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-bord);
  opacity: 0.6;
  font-weight: 500;
}

/* ============ FAQ ============ */
.fde-faq-list { display: flex; flex-direction: column; gap: 10px; }
.fde-faq-item {
  background: white;
  border: 0.5px solid rgba(110,28,58,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.fde-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  text-align: left;
  font-family: var(--fde-serif);
  font-size: 16px;
  color: var(--fde-bord);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.fde-faq-q::after {
  content: '+';
  color: var(--fde-gold);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.fde-faq-item[open] .fde-faq-q::after { transform: rotate(45deg); }
.fde-faq-a {
  padding: 0 18px 18px;
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--fde-bord);
  opacity: 0.85;
  line-height: 1.6;
}

/* ============ CTA FINAL BLOCK ============ */
.fde-cta-final {
  background: var(--fde-bord);
  color: var(--fde-creme);
  padding: 50px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fde-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,169,110,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201,169,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.fde-cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
}
.fde-cta-final-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fde-gold);
  margin: 0 0 12px;
  font-weight: 500;
}
.fde-cta-final-title {
  font-family: var(--fde-serif);
  font-size: clamp(28px, 5vw, 38px);
  color: var(--fde-creme);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 10px;
}
.fde-cta-final-title em {
  font-style: italic;
  color: var(--fde-gold);
}
.fde-cta-final-tagline {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fde-creme);
  opacity: 0.85;
  margin: 0 0 26px;
}
.fde-cta-final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}
.fde-cta-final-price-amount {
  font-family: var(--fde-serif);
  font-size: 56px;
  color: var(--fde-creme);
  font-weight: 500;
  line-height: 1;
}
.fde-cta-final-price-unit {
  font-size: 14px;
  color: var(--fde-gold);
  opacity: 0.85;
}
.fde-cta-final-price-monthly {
  font-size: 12px;
  color: var(--fde-gold);
  opacity: 0.75;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.fde-cta-final-actions { margin-bottom: 14px; }
.fde-cta-final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 11px;
  color: var(--fde-gold);
  opacity: 0.75;
}
.fde-cta-final-trust span { display: inline-flex; align-items: center; gap: 5px; }
.fde-cta-final-trust svg { width: 12px; height: 12px; }

/* ============ NUMBER STAT ============ */
.fde-stat-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.fde-stat {
  text-align: center;
}
.fde-stat-num {
  font-family: var(--fde-serif);
  font-size: 32px;
  color: var(--fde-gold);
  font-weight: 600;
  line-height: 1;
}
.fde-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fde-creme);
  opacity: 0.75;
  margin-top: 4px;
  font-weight: 500;
}

/* ============ MOBILE TWEAKS ============ */
@media (max-width: 600px) {
  .fde-institut-hero { padding: 44px 22px 50px; }
  .fde-section-block { padding: 44px 22px; }
  .fde-cta-final { padding: 42px 22px; }
  .fde-section-bordeaux { padding: 42px 22px 48px; }
  .fde-stat-row { gap: 18px; }
  .fde-stat-num { font-size: 26px; }
}


/* ============================================================
 * SINGLE PRODUCT LANDING (WooCommerce override)
 * ============================================================ */

body.fde-product-page {
  font-family: var(--fde-sans);
  background: var(--fde-creme);
  color: var(--fde-ink);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.fde-product-landing {
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

/* Hero */
.fde-product-hero {
  padding: 16px 22px 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--fde-creme) 0%, var(--fde-creme-light) 100%);
  position: relative;
  overflow: hidden;
}
.fde-product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(110,28,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.fde-product-hero-inner { position: relative; z-index: 1; }

.fde-promo-flash {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--fde-bord);
  color: var(--fde-gold);
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.fde-promo-flash::before {
  content: '🔥';
  font-size: 12px;
}

/* Book cover */
.fde-book-cover {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 158px;
  height: 218px;
  background: var(--fde-bord);
  border: 1.5px solid var(--fde-gold);
  border-radius: 4px;
  padding: 22px 18px;
  position: relative;
  box-shadow:
    0 22px 44px -16px rgba(110,28,58,0.5),
    inset 12px 0 24px -12px rgba(0,0,0,0.3);
  margin-bottom: 24px;
}
.fde-book-cover::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 6px;
  width: 1px;
  background: rgba(201,169,110,0.4);
}
.fde-book-cover-author {
  font-family: var(--fde-serif);
  font-size: 10px;
  color: var(--fde-gold);
  letter-spacing: 0.22em;
  margin-bottom: 18px;
  font-weight: 500;
}
.fde-book-cover-title {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--fde-creme);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 500;
}
.fde-book-cover-rule {
  width: 28px;
  height: 1px;
  background: var(--fde-gold);
  margin: 0 auto 11px;
  border: none;
}
.fde-book-cover-tag {
  font-family: var(--fde-serif);
  font-size: 9px;
  color: var(--fde-gold);
  letter-spacing: 0.2em;
  font-weight: 500;
}

.fde-product-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-gold-deep);
  font-weight: 500;
  margin: 0 0 10px;
}
.fde-product-title {
  font-family: var(--fde-serif);
  font-size: clamp(26px, 5vw, 32px);
  color: var(--fde-bord);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.fde-product-tagline {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--fde-bord);
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
}

/* Bullets section */
.fde-product-bullets {
  background: white;
  padding: 32px 22px;
}
.fde-product-bullets-inner { max-width: 460px; margin: 0 auto; }
.fde-bullets-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-bord);
  opacity: 0.55;
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}
.fde-product-bullet {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.fde-product-bullet:last-child { margin-bottom: 0; }
.fde-product-bullet-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fde-creme);
  color: var(--fde-gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fde-product-bullet-mark svg { width: 14px; height: 14px; }
.fde-product-bullet-text {
  font-family: var(--fde-serif);
  font-size: 15px;
  color: var(--fde-bord);
  line-height: 1.5;
}

/* Pour qui c'est */
.fde-product-for-who {
  padding: 32px 22px;
  background: var(--fde-creme);
  text-align: center;
}
.fde-product-for-who h3 {
  font-family: var(--fde-serif);
  font-size: 20px;
  color: var(--fde-bord);
  font-weight: 500;
  margin-bottom: 14px;
}
.fde-product-for-who p {
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--fde-bord);
  line-height: 1.55;
  opacity: 0.85;
  max-width: 380px;
  margin: 0 auto;
}

/* Price block (bordeaux background) */
.fde-product-price {
  background: var(--fde-bord);
  color: var(--fde-creme);
  padding: 36px 22px;
  text-align: center;
}
.fde-product-price .fde-price-old {
  font-size: 14px;
  color: var(--fde-gold);
  opacity: 0.75;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.fde-product-price .fde-price-now {
  font-family: var(--fde-serif);
  font-size: 56px;
  color: var(--fde-creme);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.fde-product-price .fde-price-savings {
  display: inline-block;
  background: var(--fde-green);
  color: white;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.fde-product-price .fde-price-urgency {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fde-gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.fde-product-price .fde-cta {
  background: var(--fde-gold);
  color: var(--fde-bord);
  border-color: var(--fde-gold);
  font-size: 18px;
  padding: 18px 22px;
  margin-bottom: 14px;
}
.fde-product-price .fde-cta:hover { background: var(--fde-gold-light); }
.fde-product-price .fde-cta-trust {
  color: var(--fde-gold);
  opacity: 0.8;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fde-product-price .fde-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.fde-product-price .fde-cta-trust svg { width: 12px; height: 12px; }

/* FAQ section (product) */
.fde-product-faq {
  padding: 32px 22px;
  background: var(--fde-creme);
}
.fde-product-faq-inner { max-width: 460px; margin: 0 auto; }
.fde-product-faq .fde-faq-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fde-bord);
  opacity: 0.55;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 500;
}
.fde-product-faq .fde-faq-item {
  background: white;
  border: 0.5px solid rgba(110,28,58,0.1);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.fde-product-faq .fde-faq-item summary {
  padding: 14px 16px;
  font-family: var(--fde-serif);
  font-size: 15px;
  color: var(--fde-bord);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.fde-product-faq .fde-faq-item summary::-webkit-details-marker { display: none; }
.fde-product-faq .fde-faq-item summary::after {
  content: '+';
  color: var(--fde-gold);
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.fde-product-faq .fde-faq-item[open] summary::after { transform: rotate(45deg); }
.fde-product-faq .fde-faq-item .fde-faq-a {
  padding: 0 16px 16px;
  font-family: var(--fde-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--fde-bord);
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .fde-product-hero { padding: 16px 20px 28px; }
  .fde-book-cover { width: 140px; height: 192px; padding: 18px 14px; }
  .fde-book-cover-title { font-size: 17px; }
}
