/* ============================================================
   THÉÂTRE FORUM — styles isolés sous .tf-page
   ============================================================ */
.tf-page {
  /* Variables locales = ce qui n'a pas d'équivalent dans main.css */
  --dt-max:        1100px;
  --dt-night-2:    #162035;
  --dt-night-3:    #1E2D47;
  --dt-coral-lt:   #F07050;
  --dt-on-dark:    rgba(255,255,255,0.88);
  --dt-muted-dark: rgba(255,255,255,0.50);
  /* Tout le reste utilise directement les variables du site (main.css) */
  font-family: var(--sans);
}

/* ── ANIMATIONS ── */
.tf-page .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.tf-page .reveal.visible { opacity: 1; transform: none; }

/* ── H1 ── */
.tf-page h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: tf-fadeUp 0.5s 0.22s ease both;
}
.tf-page h1 em { font-style: italic; color: var(--coral); }

@keyframes tf-fadeUp   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes tf-fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ── SHARED TYPOGRAPHIE ── */
.tf-page .section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 16px;
}
.tf-page .section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--coral); display: block; }
.tf-page .section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
}
.tf-page .section-title em { font-style: italic; color: var(--coral); }
.tf-page .section-lead { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ── HERO ── */
.tf-page .hero {
  background: var(--night);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 56px 96px;
  position: relative; overflow: hidden;
}
.tf-page .hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 78% 35%, rgba(224,90,58,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(30,45,71,0.7) 0%, transparent 60%);
}
.tf-page .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.tf-page .hero-inner {
  max-width: var(--dt-max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start;
  position: relative; z-index: 1;
}
.tf-page .hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,90,58,0.13); border: 0.5px solid rgba(224,90,58,0.3);
  color: var(--coral); border-radius: 40px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; margin-bottom: 28px;
  animation: tf-fadeUp 0.5s 0.1s ease both;
}
.tf-page .hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.tf-page .hero-lead {
  font-size: 17px; font-weight: 300; color: var(--dt-muted-dark); line-height: 1.75;
  max-width: 500px; margin-bottom: 16px; animation: tf-fadeUp 0.5s 0.34s ease both;
}
.tf-page .hero-disclaimer {
  font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.35);
  font-style: italic; line-height: 1.5; max-width: 460px; margin-bottom: 36px;
  animation: tf-fadeUp 0.5s 0.42s ease both;
}
.tf-page .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: tf-fadeUp 0.5s 0.5s ease both; margin-bottom: 12px; }
.tf-page .hero-note { font-size: 12px; color: var(--dt-muted-dark); font-style: italic; animation: tf-fadeUp 0.5s 0.6s ease both; }

/* Boutons */
.tf-page .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: white;
  padding: 14px 26px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.tf-page .btn-primary:hover { background: var(--dt-coral-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,90,58,0.3); }
.tf-page .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 14px 26px; border-radius: var(--r-sm);
  border: 0.5px solid rgba(255,255,255,0.22);
  font-size: 14px; font-weight: 300; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.tf-page .btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* Carte hero droite */
.tf-page .hero-card {
  background: var(--dt-night-2);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: tf-fadeUp 0.6s 0.3s ease both;
  margin-top: 7rem;
  /* reset conflits CSS global */
  display: block;
  width: auto;
  padding: 0;
  backdrop-filter: none;
  gap: 0;
  align-items: unset;
}
.tf-page .hc-header { background: rgba(224,90,58,0.1); border-bottom: 0.5px solid rgba(224,90,58,0.15); padding: 18px 24px; }
.tf-page .hc-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.tf-page .hc-title { font-size: 15px; font-weight: 500; color: white; }
.tf-page .hc-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.tf-page .hc-row { display: flex; align-items: flex-start; gap: 12px; }
.tf-page .hc-icon { width: 32px; height: 32px; border-radius: var(--r-sm); background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tf-page .hc-icon svg { width: 14px; height: 14px; color: var(--coral); }
.tf-page .hc-row-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dt-muted-dark); margin-bottom: 2px; }
.tf-page .hc-row-value { font-size: 13.5px; color: var(--dt-on-dark); font-weight: 300; line-height: 1.3; }
.tf-page .hc-row-value strong { font-weight: 500; color: white; }
.tf-page .hc-divider { height: 0.5px; background: rgba(255,255,255,0.06); }
.tf-page .hc-footer { padding: 16px 24px; border-top: 0.5px solid rgba(255,255,255,0.06); }
.tf-page .hc-opco { background: rgba(224,90,58,0.1); border: 0.5px solid rgba(224,90,58,0.2); border-radius: var(--r-sm); padding: 12px 14px; font-size: 13px; font-weight: 300; color: var(--dt-on-dark); line-height: 1.45; }
.tf-page .hc-opco strong { font-weight: 500; color: white; }

/* ── QU'EST-CE QUE LE TF ── */
.tf-page .quoi { background: var(--cream); padding: 96px 56px; }
.tf-page .quoi-inner { max-width: var(--dt-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tf-page .quoi-left .section-lead { margin-bottom: 32px; }
.tf-page .quoi-def {
  background: var(--night); border-radius: 0 var(--r-lg) var(--r-lg) 0;
  border-left: 3px solid rgba(224,90,58,0.4);
  padding: 28px 32px;
  font-family: var(--serif); font-size: 18px; font-style: italic;
  font-weight: 400; color: var(--dt-on-dark); line-height: 1.6;
}
.tf-page .quoi-def strong { font-style: normal; font-weight: 500; color: var(--coral); }
.tf-page .quoi-right { display: flex; flex-direction: column; gap: 14px; }
.tf-page .quoi-card { background: white; border-radius: var(--r-md); padding: 20px 22px; border: 0.5px solid rgba(26,31,46,0.08); display: flex; gap: 14px; align-items: flex-start; transition: border-color 0.2s; }
.tf-page .quoi-card:hover { border-color: rgba(224,90,58,0.2); }
.tf-page .quoi-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tf-page .quoi-icon svg { width: 17px; height: 17px; color: var(--coral); }
.tf-page .quoi-card-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.tf-page .quoi-card-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.55; }

/* Pas/Oui */
.tf-page .quoi-pasoui {
  background: var(--night); border-radius: var(--r-lg); padding: 28px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 4px;
}
.tf-page .po-col-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.tf-page .po-col-label::before { content: ''; width: 14px; height: 1px; display: block; }
.tf-page .po-col-label--non { color: rgba(255,255,255,0.25); }
.tf-page .po-col-label--non::before { background: rgba(255,255,255,0.15); }
.tf-page .po-col-label--oui { color: var(--coral); }
.tf-page .po-col-label--oui::before { background: var(--coral); }
.tf-page .po-items { display: flex; flex-direction: column; gap: 8px; }
.tf-page .po-item { font-size: 13px; font-weight: 300; line-height: 1.4; display: flex; align-items: flex-start; gap: 8px; }
.tf-page .po-item--non { color: rgba(255,255,255,0.28); }
.tf-page .po-item--non::before { content: '✕'; font-size: 10px; color: rgba(255,255,255,0.2); margin-top: 2px; flex-shrink: 0; }
.tf-page .po-item--oui { color: var(--dt-on-dark); }
.tf-page .po-item--oui::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23E05A3A' opacity='.15'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%23E05A3A' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── OBJECTIFS ── */
.tf-page .objectifs { background: var(--dt-night-2); padding: 96px 56px; }
.tf-page .objectifs-inner { max-width: var(--dt-max); margin: 0 auto; }
.tf-page .objectifs-header { margin-bottom: 52px; }
.tf-page .objectifs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tf-page .obj-card {
  background: var(--dt-night-3); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg); padding: 30px 28px;
  transition: border-color 0.2s, transform 0.2s; position: relative; overflow: hidden;
}
.tf-page .obj-card:hover { border-color: rgba(224,90,58,0.25); transform: translateY(-3px); }
.tf-page .obj-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--coral), transparent); opacity: 0; transition: opacity 0.3s; }
.tf-page .obj-card:hover::before { opacity: 1; }
.tf-page .obj-icon { width: 42px; height: 42px; border-radius: var(--r-md); background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.tf-page .obj-icon svg { width: 19px; height: 19px; color: var(--coral); }
.tf-page .obj-title { font-size: 16px; font-weight: 500; color: white; margin-bottom: 8px; }
.tf-page .obj-desc { font-size: 13.5px; font-weight: 300; color: var(--dt-muted-dark); line-height: 1.65; margin-bottom: 14px; }
.tf-page .obj-concret { font-size: 12.5px; font-style: italic; color: rgba(224,90,58,0.65); border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 12px; line-height: 1.45; }

/* ── DÉROULÉ ── */
.tf-page .deroule { background: white; padding: 96px 56px; }
.tf-page .deroule-inner { max-width: var(--dt-max); margin: 0 auto; }
.tf-page .deroule-header { margin-bottom: 56px; }
.tf-page .deroule-timeline { display: flex; flex-direction: column; gap: 0; }
.tf-page .dt-partie { display: flex; gap: 24px; }
.tf-page .dt-left { display: flex; flex-direction: column; align-items: center; width: 56px; flex-shrink: 0; }
.tf-page .dt-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--night); border: 2px solid rgba(224,90,58,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1;
  font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--coral);
}
.tf-page .dt-line { width: 2px; flex: 1; background: linear-gradient(to bottom, rgba(224,90,58,0.2), rgba(224,90,58,0.05)); min-height: 24px; }
.tf-page .dt-partie:last-child .dt-line { display: none; }
.tf-page .dt-content { flex: 1; padding-bottom: 48px; padding-top: 8px; }
.tf-page .dt-partie:last-child .dt-content { padding-bottom: 0; }
.tf-page .dt-duree { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.tf-page .dt-titre { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
.tf-page .dt-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 560px; }
.tf-page .dt-etapes { display: flex; flex-direction: column; gap: 10px; }
.tf-page .dt-etape {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream); border-radius: var(--r-md); padding: 14px 18px;
  border: 0.5px solid rgba(26,31,46,0.07); transition: border-color 0.2s;
}
.tf-page .dt-etape:hover { border-color: rgba(224,90,58,0.2); }
.tf-page .dt-etape-time { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; padding-top: 2px; min-width: 52px; }
.tf-page .dt-etape-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.tf-page .dt-etape-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.5; }

/* ── APPROCHE ── */
.tf-page .approche { background: var(--cream2); padding: 96px 56px; }
.tf-page .approche-inner { max-width: var(--dt-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tf-page .appr-valeurs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tf-page .appr-val { background: white; border-radius: var(--r-lg); padding: 22px 20px; border: 0.5px solid rgba(26,31,46,0.08); transition: border-color 0.2s, transform 0.15s; }
.tf-page .appr-val:hover { border-color: rgba(224,90,58,0.2); transform: translateY(-2px); }
.tf-page .appr-val-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.tf-page .appr-val-icon svg { width: 16px; height: 16px; color: var(--coral); }
.tf-page .appr-val-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.tf-page .appr-val-items { display: flex; flex-direction: column; gap: 4px; }
.tf-page .appr-val-item { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.4; display: flex; gap: 6px; align-items: flex-start; }
.tf-page .appr-val-item::before { content: '–'; color: var(--coral); flex-shrink: 0; }
.tf-page .appr-right { display: flex; flex-direction: column; gap: 14px; }
.tf-page .appr-card { background: white; border-radius: var(--r-lg); padding: 24px 26px; border: 0.5px solid rgba(26,31,46,0.08); transition: border-color 0.2s; }
.tf-page .appr-card:hover { border-color: rgba(224,90,58,0.2); }
.tf-page .appr-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.tf-page .appr-card-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.tf-page .appr-card-desc { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ── FORMULES ── */
.tf-page .formules { background: var(--night); padding: 96px 56px; }
.tf-page .formules-inner { max-width: var(--dt-max); margin: 0 auto; }
.tf-page .formules-header { margin-bottom: 52px; }
.tf-page .formules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 28px; }
.tf-page .formule-card {
  background: var(--dt-night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.tf-page .formule-card:hover { border-color: rgba(224,90,58,0.25); transform: translateY(-3px); }
.tf-page .formule-card--featured { border-color: rgba(224,90,58,0.3); position: relative; }
.tf-page .formule-badge { position: absolute; top: -12px; left: 32px; background: var(--coral); color: white; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 40px; }
.tf-page .formule-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; }
.tf-page .formule-icon svg { width: 20px; height: 20px; color: var(--coral); }
.tf-page .formule-duree { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); }
.tf-page .formule-nom { font-family: var(--serif); font-size: 26px; font-weight: 500; color: white; line-height: 1.2; }
.tf-page .formule-desc { font-size: 14px; font-weight: 300; color: var(--dt-muted-dark); line-height: 1.65; flex: 1; }
.tf-page .formule-details { display: flex; flex-direction: column; gap: 7px; padding-top: 14px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.tf-page .formule-detail { display: flex; gap: 8px; font-size: 13px; color: var(--dt-muted-dark); line-height: 1.4; align-items: flex-start; }
.tf-page .formule-detail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); flex-shrink: 0; margin-top: 7px; }
.tf-page .formule-sep { height: 0.5px; background: rgba(255,255,255,0.07); }
.tf-page .formule-tarif { font-family: var(--serif); font-size: 32px; font-weight: 500; color: white; }
.tf-page .formule-tarif span { font-size: 14px; font-weight: 300; color: var(--dt-muted-dark); }
.tf-page .formule-btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--coral); color: white; padding: 12px; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.tf-page .formule-btn:hover { background: var(--dt-coral-lt); }
.tf-page .formule-btn-ghost { display: flex; align-items: center; justify-content: center; gap: 7px; background: transparent; color: var(--dt-muted-dark); padding: 11px; border-radius: var(--r-sm); border: 0.5px solid rgba(255,255,255,0.12); font-size: 13.5px; font-weight: 300; text-decoration: none; transition: all 0.2s; }
.tf-page .formule-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); }
.tf-page .formules-opco { background: var(--dt-night-3); border-radius: var(--r-lg); padding: 24px 32px; display: flex; align-items: center; gap: 20px; border: 0.5px solid rgba(255,255,255,0.06); }
.tf-page .opco-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tf-page .opco-icon svg { width: 18px; height: 18px; color: var(--coral); }
.tf-page .opco-title { font-size: 14px; font-weight: 500; color: white; margin-bottom: 3px; }
.tf-page .opco-desc { font-size: 13px; font-weight: 300; color: var(--dt-muted-dark); line-height: 1.5; }

/* ── POUR QUI ── */
.tf-page .pourqui { background: var(--cream); padding: 96px 56px; }
.tf-page .pourqui-inner { max-width: var(--dt-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tf-page .pq-left .section-title { max-width: 400px; }
.tf-page .pq-left .section-lead { margin-bottom: 32px; }
.tf-page .pq-contexts { display: flex; flex-direction: column; gap: 12px; }
.tf-page .pq-context { background: white; border-radius: var(--r-md); padding: 18px 20px; border: 0.5px solid rgba(26,31,46,0.08); display: flex; gap: 14px; align-items: flex-start; transition: border-color 0.2s; }
.tf-page .pq-context:hover { border-color: rgba(224,90,58,0.2); }
.tf-page .pq-context-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tf-page .pq-context-icon svg { width: 16px; height: 16px; color: var(--coral); }
.tf-page .pq-context-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.tf-page .pq-context-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.45; }
.tf-page .pq-right { display: flex; flex-direction: column; gap: 14px; }
.tf-page .pq-condition { background: var(--cream2); border-radius: var(--r-lg); padding: 24px 26px; border: 0.5px solid rgba(26,31,46,0.07); }
.tf-page .pq-condition-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.tf-page .pq-condition-items { display: flex; flex-direction: column; gap: 7px; }
.tf-page .pq-condition-item { font-size: 13.5px; font-weight: 300; color: var(--text); line-height: 1.4; display: flex; gap: 10px; align-items: flex-start; }
.tf-page .pq-condition-item::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23E05A3A' opacity='.12'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%23E05A3A' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── TÉMOIGNAGES ── */
.tf-page .temoignages { background: var(--dt-night-2); padding: 96px 56px; }
.tf-page .testi-inner { max-width: var(--dt-max); margin: 0 auto; }
.tf-page .testi-header { margin-bottom: 52px; }
.tf-page .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tf-page .testi-card {
  background: var(--dt-night-3); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.tf-page .testi-card:hover { border-color: rgba(224,90,58,0.2); transform: translateY(-2px); }
.tf-page .testi-stars { display: flex; gap: 3px; margin-bottom: 2px; }
.tf-page .testi-star { width: 11px; height: 11px; background: var(--coral); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.tf-page .testi-quote { font-family: var(--serif); font-size: 16.5px; font-style: italic; color: var(--dt-on-dark); line-height: 1.6; flex: 1; }
.tf-page .testi-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.tf-page .testi-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--dt-night-2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 13px; font-weight: 500; color: var(--coral); flex-shrink: 0; }
.tf-page .testi-name { font-size: 13px; font-weight: 500; color: white; }
.tf-page .testi-role { font-size: 12px; font-weight: 300; color: var(--dt-muted-dark); }

/* ── CTA FINAL ── */
.tf-page .cta-final { background: var(--coral); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.tf-page .cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(0,0,0,0.18) 0%, transparent 70%); }
.tf-page .cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.tf-page .cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.tf-page .cta-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 500; color: white; line-height: 1.1; margin-bottom: 18px; }
.tf-page .cta-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 40px; }
.tf-page .cta-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.tf-page .cta-box { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-lg); padding: 24px; text-align: left; text-decoration: none; color: white; transition: background 0.2s, border-color 0.2s, transform 0.15s; display: block; }
.tf-page .cta-box:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.tf-page .cta-box-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.tf-page .cta-box-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; margin-bottom: 6px; }
.tf-page .cta-box-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 12px; line-height: 1.5; }
.tf-page .cta-box-link { font-size: 13px; font-weight: 500; color: white; display: flex; align-items: center; gap: 5px; }
.tf-page .cta-note { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── FORMATION COMPLÉMENTAIRE ── */
.tf-page .complementaire { background: var(--cream); padding: 48px 56px; border-top: 0.5px solid rgba(26,31,46,0.08); }
.tf-page .comp-inner { max-width: var(--dt-max); margin: 0 auto; }
.tf-page .comp-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.tf-page .comp-card { background: white; border-radius: var(--r-lg); padding: 26px 32px; border: 0.5px solid rgba(26,31,46,0.08); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; transition: border-color 0.2s; }
.tf-page .comp-card:hover { border-color: rgba(224,90,58,0.2); }
.tf-page .comp-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.tf-page .comp-title { font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.tf-page .comp-sub { font-size: 13px; font-weight: 300; color: var(--muted); }
.tf-page .comp-btn { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--coral); border: 0.5px solid rgba(224,90,58,0.3); padding: 11px 20px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s, border-color 0.2s; white-space: nowrap; flex-shrink: 0; }
.tf-page .comp-btn:hover { background: rgba(224,90,58,0.08); border-color: var(--coral); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tf-page .hero-inner,
  .tf-page .quoi-inner,
  .tf-page .approche-inner,
  .tf-page .pourqui-inner { grid-template-columns: 1fr; }
  .tf-page .hero-card { max-width: 480px; }
  .tf-page .hero,
  .tf-page .quoi,
  .tf-page .objectifs,
  .tf-page .deroule,
  .tf-page .approche,
  .tf-page .formules,
  .tf-page .pourqui,
  .tf-page .temoignages,
  .tf-page .cta-final,
  .tf-page .complementaire { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .tf-page .objectifs-grid,
  .tf-page .formules-grid,
  .tf-page .testi-grid,
  .tf-page .appr-valeurs { grid-template-columns: 1fr; }
  .tf-page .quoi-pasoui { grid-template-columns: 1fr; gap: 20px; }
  .tf-page .cta-dual { grid-template-columns: 1fr; }
  .tf-page .hero,
  .tf-page .quoi,
  .tf-page .objectifs,
  .tf-page .deroule,
  .tf-page .approche,
  .tf-page .formules,
  .tf-page .pourqui,
  .tf-page .temoignages,
  .tf-page .cta-final,
  .tf-page .complementaire { padding-left: 24px; padding-right: 24px; }
  .tf-page h1 { font-size: clamp(36px, 8vw, 52px); }
}
