/* ── HERO 2-COL ── */
.coaching-hero {
  background: var(--night);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden;
}
.coaching-hero-orb-1 {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); width: 560px; height: 560px;
  background: rgba(224,90,58,0.07); top: -80px; right: -60px;
}
.coaching-hero-orb-2 {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); width: 380px; height: 380px;
  background: rgba(30,45,71,0.8); bottom: 0; left: -80px;
}
.coaching-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  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;
}
.coaching-hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.coaching-hero-inner > * { min-width: 0; }
.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;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.coaching-hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 68px);
  font-weight: 500; line-height: 1.1; color: white;
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.coaching-hero h1 em { font-style: italic; color: var(--coral); }
.hero-lead {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 500px; margin-bottom: 36px;
}
.hero-distinction {
  background: var(--night-2, #162035); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 36px;
  border-left: 3px solid var(--coral);
}
.hero-distinction p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }
.hero-distinction strong { font-weight: 500; color: rgba(255,255,255,0.88); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Coaching modal card */
.ccard {
  background: var(--night-2, #162035); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); overflow: hidden; width: 100%;
  display: block;
}
.ccard-header {
  background: rgba(224,90,58,0.1); border-bottom: 0.5px solid rgba(224,90,58,0.15);
  padding: 18px 24px;
}
.ccard-header-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 4px;
}
.ccard-header-title { font-size: 15px; font-weight: 500; color: white; }
.ccard-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.ccard-row { display: flex; align-items: flex-start; gap: 14px; }
.ccard-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ccard-icon svg { width: 16px; height: 16px; color: var(--coral); }
.ccard-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.ccard-value { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.88); line-height: 1.35; }
.ccard-value strong { font-weight: 500; color: white; }
.ccard-divider { height: 0.5px; background: rgba(255,255,255,0.07); margin: 4px 0; }
.ccard-footer { padding: 18px 24px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.ccard-confidential {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5);
}
.ccard-confidential::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(224,90,58,0.5); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(224,90,58,0.12);
}

/* ── SECTION EYEBROW ── */
.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;
}
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--coral); display: block; }
.coaching-section-title {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
}
.coaching-section-title em { font-style: italic; color: var(--coral); }
.coaching-section-lead { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 540px; margin-bottom: 52px; }

/* ── IDENTIFICATION ── */
.identification { background: var(--cream); padding: 96px 56px; }
.id-inner { max-width: 1100px; margin: 0 auto; }
.id-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.id-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 30px 28px; border: 0.5px solid rgba(26,31,46,0.08);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.id-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.07); border-color: rgba(224,90,58,0.18); }
.id-card-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.id-card-icon svg { width: 20px; height: 20px; color: var(--coral); }
.id-card-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.id-card-desc { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.55; }
.id-invite {
  background: var(--white); border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 28px 36px;
  font-family: var(--serif); font-size: 20px; font-style: italic;
  font-weight: 400; color: var(--text); line-height: 1.5;
}

/* ── CE QU'ON TRAVAILLE ── */
.travail { background: var(--night); padding: 96px 56px; }
.travail-inner { max-width: 1100px; margin: 0 auto; }
.travail-header { margin-bottom: 56px; }
.travail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.travail-card {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.travail-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;
}
.travail-card:hover { border-color: rgba(224,90,58,0.25); transform: translateY(-3px); }
.travail-card:hover::before { opacity: 1; }
.tc-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; margin-bottom: 14px;
}
.tc-icon svg { width: 18px; height: 18px; color: var(--coral); }
.tc-title { font-size: 16px; font-weight: 500; color: white; margin-bottom: 8px; }
.tc-desc { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }
.tc-examples {
  margin-top: 14px; padding-top: 14px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}
.tc-example {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.5);
  margin-bottom: 6px; line-height: 1.4;
}
.tc-example::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0; margin-top: 6px; opacity: 0.6;
}

/* ── PARCOURS ── */
.parcours { background: #EDE8DF; padding: 96px 56px; }
.parcours-inner { max-width: 1100px; margin: 0 auto; }
.parcours-header { margin-bottom: 64px; }
.parcours-timeline { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.pt-step { display: flex; gap: 28px; }
.pt-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 48px; }
.pt-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: white; border: 1.5px solid rgba(224,90,58,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--coral);
  flex-shrink: 0; position: relative; z-index: 1;
}
.pt-line { width: 1px; flex: 1; background: rgba(224,90,58,0.15); min-height: 28px; }
.pt-step:last-child .pt-line { display: none; }
.pt-content { flex: 1; padding-bottom: 40px; padding-top: 10px; }
.pt-step:last-child .pt-content { padding-bottom: 0; }
.pt-tag {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.pt-title { font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.pt-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }
.pt-details {
  margin-top: 14px; background: white; border-radius: var(--r-md);
  padding: 16px 20px; border: 0.5px solid rgba(26,31,46,0.08);
}
.pt-detail-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 300; color: var(--muted);
  margin-bottom: 8px; line-height: 1.4;
}
.pt-detail-item:last-child { margin-bottom: 0; }
.pt-detail-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;
}

/* ── FAQ 2-COL ── */
.coaching-faq { background: var(--night); padding: 96px 56px; }
.coaching-faq-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr; gap: 80px;
}
.faq-left .coaching-section-title { color: white; }
.faq-left .coaching-section-lead { color: rgba(255,255,255,0.5); margin-bottom: 32px; }
.faq-list-coaching { display: flex; flex-direction: column; align-self: start; }
.faq-item-coaching { border-bottom: 0.5px solid rgba(255,255,255,0.08); overflow: hidden; }
.faq-item-coaching:first-child { border-top: 0.5px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-family: var(--sans);
  font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.88);
  text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: white; }
.faq-q.open { color: var(--coral); }
.faq-arrow {
  width: 20px; height: 20px; border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s, background 0.2s;
}
.faq-q.open .faq-arrow { transform: rotate(45deg); border-color: var(--coral); background: rgba(224,90,58,0.12); }
.faq-arrow svg { width: 10px; height: 10px; color: currentColor; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7;
}
.faq-a.open { max-height: 400px; padding-bottom: 20px; }

/* ── TÉMOIGNAGES ── */
.coaching-testi { background: var(--cream); padding: 96px 56px; }
.testi-inner-coaching { max-width: 1100px; margin: 0 auto; }
.testi-header-coaching { margin-bottom: 56px; }
.testi-grid-coaching { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.testi-card-coaching {
  background: var(--white); border-radius: var(--r-xl);
  padding: 32px; border: 0.5px solid rgba(26,31,46,0.08);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card-coaching:hover { border-color: rgba(224,90,58,0.2); transform: translateY(-3px); }
.testi-before {
  background: rgba(224,90,58,0.06); border-left: 2px solid rgba(224,90,58,0.3);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 10px 14px;
}
.testi-before-label {
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral); font-weight: 500; margin-bottom: 4px;
}
.testi-before-text { font-size: 12.5px; color: var(--muted); font-style: italic; line-height: 1.5; }
.testi-quote-coaching {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--text); line-height: 1.55; flex: 1;
}
.testi-author-coaching {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 0.5px solid rgba(26,31,46,0.08);
}
.testi-avatar-coaching {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 500; color: var(--coral); flex-shrink: 0;
}
.testi-name-coaching { font-size: 13px; font-weight: 500; color: var(--text); }
.testi-role-coaching { font-size: 12px; font-weight: 300; color: var(--muted); }

/* ── CTA FINAL ── */
.cta-coral-final { background: var(--coral); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-coral-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%);
}
.cta-coral-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-coral-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.cta-coral-title { font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); font-weight: 500; color: white; line-height: 1.1; margin-bottom: 18px; }
.cta-coral-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 40px; }
.cta-coral-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-coral-note { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .coaching-hero-inner { grid-template-columns: 1fr 360px; gap: 40px; }
}
@media (max-width: 1024px) {
  .coaching-hero-inner, .coaching-faq-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .coaching-hero, .identification, .travail, .parcours, .coaching-faq, .coaching-testi, .cta-coral-final { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .id-grid, .travail-grid, .testi-grid-coaching { grid-template-columns: 1fr; }
  .coaching-hero, .identification, .travail, .parcours, .coaching-faq, .coaching-testi, .cta-coral-final { padding-left: 24px; padding-right: 24px; }
  .hero-btns { flex-direction: column; }
}
