/* @import MUST be first line in CSS file */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --fond-sombre: #0c202e;
  --bleu-hnl: #148aff;
  --noir-hnl: #0d202e;
  --blanc-hnl: white;
  --gris-hnl: #eee;
  --vert-whatsapp: #34d56d;
  --bleu-leger: #148aff4d;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--fond-sombre);
  background: var(--blanc-hnl);
  font-size: 16px;
  line-height: 125%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

/* ===== LAYOUT ===== */
.container {
  max-width: 940px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  display: block;
  background: var(--blanc-hnl);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin-bottom: 4rem;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1030px;
  margin: 0 auto;
  padding: 15px 20px;
}
.navbar-logo img { max-width: 200px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 24px; }

/* ===== NAV CTA (PRENDRE RDV) ===== */
.button-primary,
.nav-cta {
  display: inline-block;
  background: var(--bleu-hnl);
  color: var(--blanc-hnl);
  padding: 1rem 2rem;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.button-primary:hover,
.nav-cta:hover {
  background: #0d6ecc;
  transform: translateY(-1px);
}
.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

/* ===== BUTTON SECONDARY ===== */
.button-secondary {
  display: inline-block;
  background: var(--noir-hnl);
  color: var(--blanc-hnl);
  padding: 1rem 2rem;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.button-secondary:hover {
  background: #1a3a52;
  transform: translateY(-1px);
}

/* Buttons: all text uppercase */

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--fond-sombre); margin: 6px 0; transition: 0.3s; }

@media (max-width: 767px) {
  .menu-toggle { display: block; }
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--blanc-hnl);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .navbar-links.open { display: flex; }
}

/* ===== WHATSAPP BAR ===== */
.whatsapp-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  background: linear-gradient(rgba(52,213,109,0.1), rgba(52,213,109,0.1));
  text-decoration: none;
  color: var(--vert-whatsapp);
  font-size: 1em;
  font-weight: 600;
  transition: background 0.2s;
}
.whatsapp-bar:hover {
  background: linear-gradient(rgba(52,213,109,0.18), rgba(52,213,109,0.18));
}
.whatsapp-bar .img_whatsapp_mobile {
  max-width: 50px;
  margin-right: 1rem;
}
.whatsapp-bar .whatsapp-text,
.whatsapp-bar .txt_whatsapp_mobile {
  color: var(--vert-whatsapp);
  font-size: 0.85em;
}

/* ===== HERO / HEADER ===== */
.header {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  text-align: center;
}
.bloc_header_titre-soustitre {
  margin-bottom: 2rem;
}
.bloc_header_introaccroche {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.div_space_2 {
  margin-bottom: 2rem;
}
.header_titre {
  font-size: 2em;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -1px;
  padding-bottom: 0.25rem;
  text-align: center;
  font-family: Poppins, sans-serif;
}
.header_soustitre {
  font-family: Poppins, sans-serif;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  letter-spacing: -1px;
  line-height: 125%;
}
.header_intro_p {
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  line-height: 175%;
}
.header .p strong { color: var(--fond-sombre); }

/* Hero buttons */
.bloc_header_cta {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

/* Hero video */
.bloc_header_video {
  max-width: 1000px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
}
.bloc_header_video .wistia_responsive_padding {
  padding: 56.27% 0 0 0;
  position: relative;
}
.bloc_header_video .wistia_responsive_wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.bloc_header_video .wistia_responsive_wrapper iframe,
.bloc_header_video .wistia_responsive_wrapper .wistia_embed {
  width: 100%;
  height: 100%;
}

/* Client logos */
.bloc_header_logosclients {
  margin-bottom: 2rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.logos_clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
}
.logos_clients img {
  filter: grayscale(100%);
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s;
}
.logos_clients img:hover {
  filter: grayscale(0%);
}

/* ===== GENERIC TEXT ===== */
.p { font-size: 1em; line-height: 150%; }
.p_center { text-align: center; font-size: 1em; line-height: 150%; }

/* ===== GUARANTEE / SECTION GRAY ===== */
.section_gray {
  background-color: var(--gris-hnl);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 5rem;
}
.section_gray .header_soustitre {
  margin-bottom: 1.5rem;
}
.section_gray .p {
  font-size: 1em;
  line-height: 150%;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 0.5rem;
}
.section_gray .p strong { color: var(--fond-sombre); }
.section_gray .p_bold {
  font-weight: 700;
}
.section_gray .button-primary {
  margin-top: 1.5rem;
}
.section_gray .p_center {
  text-align: center;
  font-size: 1em;
  line-height: 150%;
  max-width: 700px;
  margin: 0 auto 8px;
}
.section_gray .p_center strong { color: var(--fond-sombre); }

/* ===== EXPERTS / SECTION DARK ===== */
.section_dark {
  background-color: var(--fond-sombre);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 5rem;
}
.sous_titre_section_dark {
  color: var(--bleu-hnl);
  text-align: center;
  letter-spacing: -1px;
  padding-bottom: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 0.5rem;
}
.titre_section_dark {
  color: var(--blanc-hnl);
  text-align: center;
  letter-spacing: -1px;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 2em;
  line-height: 125%;
  margin-bottom: 1.5rem;
}
.p_dark {
  color: var(--blanc-hnl);
  text-align: center;
  max-width: 700px;
  font-size: 1em;
  line-height: 150%;
  margin-bottom: 1rem;
}
.p_dark strong { color: var(--blanc-hnl); }

/* Experts 3-column grid */
.bloc_auteurs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-left: 5rem;
  padding-right: 5rem;
  width: 100%;
}
.cell_auteur {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.cell_auteur img {
  max-width: 200px;
  border-radius: 100%;
  border: 4px solid var(--blanc-hnl);
  margin-bottom: 2rem;
}
.cell_auteur .img_semy {
  max-width: 180px;
  border-radius: 0;
  border: none;
  margin-bottom: 2rem;
}
.nom_auteur {
  color: var(--blanc-hnl);
  text-align: center;
  margin-bottom: 2rem;
  font-family: Poppins, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 125%;
}
.p_auteur {
  color: var(--blanc-hnl);
  text-align: center;
  max-width: 700px;
  font-size: 1em;
  line-height: 150%;
}
.p_auteur strong {
  color: var(--blanc-hnl);
}

/* ===== TESTIMONIALS ===== */
.temoignages {
  background: var(--blanc-hnl);
  padding: 2rem 5rem;
}
.sous_titre_section {
  color: var(--bleu-hnl);
  text-align: center;
  letter-spacing: -1px;
  padding-bottom: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 0.5rem;
}
.titre_section {
  text-align: center;
  letter-spacing: -1px;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 1.5rem;
}

/* Testimonials video grid */
.bloc_temoignages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.cell_temoignage {
  max-width: 300px;
  text-align: center;
}
.cell_temoignage .video-portrait {
  position: relative;
  padding-top: 177%;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}
.cell_temoignage .video-portrait iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.cell_temoignage .nom_temoignage {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1em;
  margin-bottom: 0.25rem;
}
.cell_temoignage .role_temoignage {
  font-style: italic;
  font-size: 0.9em;
  color: #666;
}

/* ===== TOOLS / SECTION DARK 2 ===== */
.image-3 {
  border-radius: 20px;
  width: 100%;
  max-width: 940px;
  margin: 2rem auto 0;
}

/* ===== METHOD / BLOC CTA CONTENT ===== */
.bloc_cta_content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}
.bloc_cta_content .sous_titre_section {
  margin-bottom: 0.5rem;
}
.bloc_cta_content .titre_section {
  margin-bottom: 1rem;
}
.bloc_cta_content .p {
  font-size: 1em;
  line-height: 150%;
  text-align: center;
}
.bloc_cta_content .p strong { color: var(--fond-sombre); }

/* ===== FAQ ===== */
.faq {
  background-color: var(--bleu-hnl);
  padding: 4rem 5rem;
  text-align: center;
}
.faq .titre_section_dark {
  color: var(--blanc-hnl);
  margin-bottom: 2rem;
}
.bloc_faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 940px;
  margin: 0 auto;
}
.faq_item {
  background: var(--blanc-hnl);
  border-radius: 60px;
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.titre_faq {
  color: var(--bleu-hnl);
  text-align: center;
  letter-spacing: -1px;
  max-width: 700px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25em;
  line-height: 125%;
  font-weight: 700;
}
.p_faq {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  line-height: 150%;
  text-align: center;
}
.p_faq strong { color: var(--fond-sombre); }

/* ===== FOOTER ===== */
.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}
.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.footer-content {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px 70px;
}
.footer-brand img,
.image-2 {
  max-width: 200px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}
.footer-link:hover { color: var(--bleu-hnl); }
.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
  border: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

/* ===== RESPONSIVE: TABLET (991px) ===== */
@media (max-width: 991px) {
  .header { padding-left: 2rem; padding-right: 2rem; }
  .bloc_header_video { padding-left: 1rem; padding-right: 1rem; }
  .bloc_header_logosclients { padding-left: 0; padding-right: 0; }
  .section_gray { padding-left: 2rem; padding-right: 2rem; }
  .section_dark { padding-left: 2rem; padding-right: 2rem; }
  .bloc_auteurs { padding-left: 2rem; padding-right: 2rem; }
  .temoignages { padding-left: 2rem; padding-right: 2rem; }
  .faq { padding-left: 2rem; padding-right: 2rem; }
  .bloc_faq { gap: 2rem; }
  .bloc_temoignages { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE: MOBILE (767px) ===== */
@media (max-width: 767px) {
  .header { padding-left: 1rem; padding-right: 1rem; }
  .bloc_header_video { padding-left: 0; padding-right: 0; }
  .bloc_header_cta { flex-flow: column; gap: 1rem; }
  .button-primary,
  .button-secondary { width: 100%; }
  .logos_clients { grid-template-columns: repeat(2, 1fr); }
  .bloc_auteurs { grid-template-columns: 1fr; padding-left: 1rem; padding-right: 1rem; }
  .temoignages,
  .faq { padding-left: 1rem; padding-right: 1rem; }
  .bloc_temoignages { grid-template-columns: 1fr; }
  .cell_temoignage { max-width: 100%; }
  .bloc_faq { grid-template-columns: 1fr; }
  .faq_item { border-radius: 30px; }
  .footer-wrapper { flex-direction: column; align-items: center; }
  .footer-content { grid-template-columns: 1fr; margin-top: 40px; }
  .footer-block { align-items: center; }
  .navbar-inner { padding: 12px 20px; justify-content: space-between; }
  .menu-toggle { display: block; }
}

/* ===== MENTIONS LEGALES ===== */
.bloc_mentions_legales {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: left;
}
.p_mentions_legales {
  font-size: 1em;
  line-height: 150%;
  color: var(--fond-sombre);
}
.p_mentions_legales p {
  margin-bottom: 1rem;
}
.p_mentions_legales strong {
  display: block;
  margin-top: 2rem;
  font-size: 1.1em;
}

/* ===== COACHING ===== */
.bloc_tete_coaching {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bloc_tete_coaching img:first-child {
  max-width: 120px;
  border-radius: 50%;
  border: 4px solid white;
}
.bloc_tete_coaching img:last-child {
  max-width: 100px;
}

/* ===== CALENDLY / ICLOSED ===== */
.bloc_calendly {
  max-width: 940px;
  margin: 0 auto 4rem;
}

/* ===== PAGES SECONDAIRES ===== */
.page-content {
  padding: 2rem 5rem;
  min-height: 60vh;
}
.page-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-content p {
  margin-bottom: 16px;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.8;
}
.page-content a { color: var(--bleu-hnl); }
.page-content a:hover { text-decoration: underline; }

/* ===== MERCI PAGE ===== */
.merci {
  padding: 4rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merci-inner { max-width: 600px; }
.merci h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fond-sombre);
}
.merci .check-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.merci p {
  font-size: 17px;
  color: #4a5568;
  margin-bottom: 16px;
}
.merci a { color: var(--bleu-hnl); font-weight: 600; }

/* ===== PRISE DE RDV ===== */
.rdv {
  padding: 2rem 2rem;
  text-align: center;
}
.rdv h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.rdv p {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 32px;
}
.calendly-embed {
  min-height: 700px;
  border-radius: 12px;
  overflow: hidden;
}

/* ===== COACHING ===== */
.coaching-hero {
  padding: 2rem 2rem;
  text-align: center;
}
.coaching-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.coaching-hero .subtitle {
  color: var(--bleu-hnl);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.coaching-hero p {
  font-size: 17px;
  color: #4a5568;
  max-width: 650px;
  margin: 0 auto 24px;
}
.coaching-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 32px auto;
}
@media (max-width: 567px) { .coaching-features { grid-template-columns: 1fr; } }
.coaching-feature {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.coaching-feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.coaching-feature p { font-size: 14px; color: #4a5568; margin: 0; }
.coaching-price {
  background: var(--fond-sombre);
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  max-width: 500px;
  margin: 32px auto;
  text-align: center;
}
.coaching-price .price { font-size: 36px; font-weight: 700; color: var(--bleu-hnl); }
.coaching-price p { color: #a0aec0; margin-top: 8px; }

/* ===== VIDEO PAGE ===== */
.video-page {
  padding: 2rem 2rem;
  text-align: center;
}
.video-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.video-page p {
  color: #4a5568;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.video-embed {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.video-embed .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-embed .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
