:root{
  --brand-orange:#e63946;     /* bandeau titre */
  --ink:#1F2233;              /* texte principal */
  --bg:#fffaf7;               /* fond doux */
  --card:#ffffff;             /* fond des cartes */
  --muted:#f6e8e0;            /* encarts “On t’accompagne à …” */
  --radius-xl:22px;
  --radius-lg:16px;
  --gap:34px;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,"Helvetica Neue",sans-serif;color:var(--ink);background:var(--bg)}
h1{font-weight:800;letter-spacing:.3px;margin:40px 0 22px;text-align:center}
.wrap{max-width:1180px;margin:0 auto;padding:0 18px 48px}

/* =========================
   PLANS (2 cartes côte à côte)
   ========================= */
.plans{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: var(--gap);
  align-items: stretch; /* → égalise la hauteur des 2 cartes */
}
@media (max-width:980px){
  .plans{ grid-template-columns:1fr; gap:24px; }
}

/* Carte */
.plan-card{
  background:var(--card);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;      /* header + body vertical */
}

/* Bandeau titre */
.plan-head{
  background: var(--brand-orange);
  color: #fff;
  padding: 30px 20px;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  min-height: 110px;          /* hauteur normalisée */
}
.plan-head h2{
  margin:0;
  font-size:clamp(22px,2.4vw,28px);
  line-height:1.2;
  font-weight:800;
}

/* Corps */
.plan-body{
  padding:28px;
  display:grid;
  grid-template-rows: /* question */ auto /* 3 blocs égaux */ repeat(3, 1fr);
  gap:18px;                          /* espace constant entre lignes */
}

/* Question (hauteur commune pour synchroniser les blocs) */
.question{
  font-size:clamp(18px,2.1vw,22px);
  font-weight:800;
  line-height:1.35;
  letter-spacing:.2px;
  margin:6px 0 6px;
  min-height: 96px;                 /* ← clé : même base à gauche/droite */
  display:flex; align-items:center;
}

/* Blocs “On t’accompagne à …” : 1 par ligne (1fr) */
.block{
  background:var(--muted);
  border-radius:var(--radius-lg);
  padding:18px 18px 18px 54px;
  position:relative;
  display:flex; flex-direction:column; justify-content:center;
  /* option : assurer un minimum, mais les 1fr les rendront égaux */
  min-height: 88px;
}
.block h3{ margin:0 0 8px; font-size:16px; letter-spacing:.2px; }
.block p{ margin:0; font-size:15.5px; line-height:1.5; color:black; text-align:left; }
.block + .block{ margin-top:0; }      /* géré par gap */

/* Icône éclair dans le bloc */
.bolt{
  position:absolute; left:14px; top:14px; width:26px; height:26px; color:var(--brand-orange);
}

/* CTA (si utilisé) */
.cta{
  display:inline-block; margin-top:18px; padding:12px 18px; border-radius:14px;
  background:var(--brand-orange); color:#fff; text-decoration:none; font-weight:700;
}
.cta-button{
  display:inline-block; margin-top:1rem; background:#e53935; color:#fff;
  padding:12px 20px; font-weight:bold; border-radius:12px; text-decoration:none;
  font-size:1rem; transition:background-color .3s ease;
}
.cta-button:hover{ background-color:#c62828; }

/* Mobile : on libère les contraintes de hauteur pour éviter les blancs */
@media (max-width:900px){
  .plan-head{ min-height:unset; padding:24px 18px; }
  .plan-body{ grid-template-rows: auto auto auto auto; } /* taille au contenu */
  .question{ min-height:unset; }
  .block{ min-height:unset; }
}

/* =========================
   PROMESSE (carte centrée)
   ========================= */
.promise-section{
  max-width:1200px; margin:60px auto; padding:40px 30px;
  background:#fff; border-radius:20px; box-shadow:0 10px 30px rgba(0,0,0,0.06);
  text-align:center;
}
.promise-section h2{ font-size:24px; font-weight:700; margin-bottom:20px; color:#111; }
.promise-section p{ font-size:18px; line-height:1.6; margin-bottom:40px; color:#222; }

/* =========================
   HEADER/FOOTER (existants)
   ========================= */
.site-header{
  position:fixed; top:0; left:0; right:0; background:#fff; z-index:9999;
  box-shadow:0 2px 5px rgba(0,0,0,.05);
}
.header-inner{
  max-width:1200px; margin:0 auto; padding:10px 20px;
  display:flex; align-items:center; justify-content:space-between;
}
.logo{ font-weight:700; font-size:1.4rem; color:#111; text-decoration:none; }
.logo span{ color:#e63946; }
.site-header nav ul{ list-style:none; margin:0; padding:0; display:flex; gap:16px; align-items:center; }
.site-header nav a{ text-decoration:none; color:#222; font-weight:500; padding-bottom:6px; }
.site-header nav a.active{ border-bottom:2px solid #e63946; font-weight:700; }

.nav-toggle{ display:none; }
@media (max-width:768px){
  .site-header nav ul{ display:none; position:absolute; right:20px; top:60px;
    flex-direction:column; background:#fff; border:1px solid #eee; border-radius:8px; padding:10px; }
  .site-header nav ul.open{ display:flex; }
  .nav-toggle{ display:inline-block; background:#fff; border:1px solid #ddd; border-radius:6px; padding:5px 10px; }
}

.social-icons{ display:flex; gap:16px; align-items:center; }
.social-icons a{ color:#222; font-size:1.4rem; text-decoration:none; }
.social-icons a:hover{ color:#e63946; }

.site-footer{ margin-top:60px; padding:24px 0; background:#fafafa; border-top:1px solid #eee; text-align:center; }
.site-footer a{ color:#222; text-decoration:none; }
.site-footer a:hover{ color:#e63946; }

.page{ padding-top:70px; }

/* =========================
   INTERVIEWS (existants)
   ========================= */
.interviews-grid{
  display:grid; gap:28px; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items:stretch; max-width:1300px; margin:0 auto; padding:24px 16px 48px;
}
@media (min-width:640px){ .interviews-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width:1024px){ .interviews-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.interviews-grid .card{
  display:flex; flex-direction:column; background:#fff; border:1px solid #eee; border-radius:16px;
  overflow:hidden; box-shadow:0 6px 16px rgba(0,0,0,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}


.interviews-grid .card:hover{ transform:translateY(-4px); box-shadow:0 12px 24px rgba(0,0,0,.10); }

.interviews-grid .card picture{
  height:320px; background:#faf7f2; display:flex; align-items:center; justify-content:center;
  overflow:hidden; border-bottom:1px solid #eee;
}
@media (max-width:1024px){ .interviews-grid .card picture{ height:240px; } }
@media (max-width:640px) { .interviews-grid .card picture{ height:180px; } }

.interviews-grid .card picture img{
  max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; object-position:center; display:block;
}
.interviews-grid .card picture.cover img{ width:100%; height:100%; object-fit:cover; object-position:center; }

.interviews-grid .card-body{ flex:1; display:flex; flex-direction:column; padding:16px 18px 20px; }
.interviews-grid .card-body h3{ margin:0 0 8px; font-size:1.15rem; font-weight:800; }
.interviews-grid .card-body p{ margin:0 0 12px; line-height:1.45; color:#333; }
.interviews-grid .card-body .tags{ color:#6b7280; }
.interviews-grid .card-body a{
  margin-top:auto; align-self:flex-start; background:var(--accent, #e63946); color:#fff; text-decoration:none;
  padding:10px 14px; border-radius:10px; font-weight:700; transition:filter .2s ease;
}
.interviews-grid .card-body a:hover{ filter:brightness(.95); }


.card-footer {
  display: flex;
  margin-top: auto; /* pousse le bouton en bas */
  justify-content: flex-start; /* ou space-between si plusieurs boutons */
  justify-content: center; /* centre le bouton */
}


.disabled-link {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  pointer-events: none; /* désactive le clic */
  box-shadow: none;
  transform: none;
}


.btn-interview {
  display: inline-block;
  background: #e63946;
  color: black;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
   margin-top: auto; /* pousse le bouton en bas */
   width: 100%; /* le bouton prend toute la largeur */
}


.btn-interview:hover {
  background: #d62839;
}



/* Intro bloc (au-dessus des interviews) */
.intro-block{
  max-width:1260px; margin:0 auto 40px; padding:30px 20px; text-align:center;
  background:#fff; border-radius:16px; box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.intro-block h2{ font-size:2rem; margin-bottom:10px; font-weight:800; }
.intro-block h3{ font-size:1.3rem; margin-bottom:20px; font-weight:600; color:#444; }
.intro-block p{ font-size:1.1rem; line-height:1.6; color:#333; }




/* Intro bloc (au-dessus des interviews) */
.block_white{
  max-width:1260px; margin:0 auto 40px; padding:30px 20px;
  background:#fff; border-radius:16px; box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.block_white h2{ font-size:2rem; margin-bottom:10px; font-weight:800; text-align:center; }
.block_white h3{ font-size:1.3rem; margin-bottom:20px; font-weight:600; color:#444; }
.block_white p{ font-size:1.1rem; line-height:1.6; color:#333; }

#nos-offres {
  padding-top: 90px; /*si tu préfères gonfler l’intérieur */
}

/* =========================
   HERO 2 colonnes (photo + texte)
   ========================= */
.about-hero{
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:stretch;
  max-width:1200px; margin:60px auto; padding:0 20px;
}
.hero-media{ border-radius:20px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.12); margin:0; }
.hero-media img{ width:100%; height:100%; aspect-ratio:4/5; object-fit:cover; object-position:50% 40%; display:block; }
.hero-text{
  background:#fff; border-radius:16px; padding:2rem; box-shadow:0 8px 20px rgba(0,0,0,0.08);
  color:#0f172a; line-height:1.6; height:100%; display:flex; flex-direction:column; gap:.9rem;
}
.hero-text h1{ margin:0 0 .4em; font-size:clamp(24px, 2.6vw, 36px); line-height:1.2; letter-spacing:-0.015em; }
.hero-text p{ margin:0; font-size:clamp(15px, 1.25vw, 18px); line-height:1.6; }
.hero-text .highlight{ display:inline-block; padding:.5rem .75rem; background:#fff7e6; border:1px solid #ffe0ad; border-radius:10px; }
@media (max-width:900px){
  .about-hero{ grid-template-columns:1fr; gap:22px; }
  .hero-media img{ aspect-ratio:16/9; }
  .hero-text{ height:auto; text-align:center; padding:clamp(16px,4vw,24px); }
  .plan-head{ min-height:unset; }
}


/* Visually hidden (mais accessible) */
.vh{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* Carte d’inscription */
.signup-card{
  max-width: 660px;
  margin: clamp(16px, 4vw, 32px) auto;
  padding: clamp(22px, 4vw, 32px);
  background: #fbf3ec;                 /* beige doux (proche de ta maquette) */
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Titre */
.signup-title{
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink, #1F2233);
}

/* Champs */
.signup-field input{
  width: 100%;
  height: 58px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 18px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.signup-field input::placeholder{ color: #8b8b8b; }
.signup-field input:focus{
  border-color: #e63946;                  /* ta couleur d’accent */
  box-shadow: 0 0 0 3px rgba(230,57,70,.15);
}

/* Légal */
.signup-legal{
  margin: 2px 0 0;
  font-size: 13px;
  color: #555;
}

/* Bouton */
.signup-btn{
  display: inline-block;
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  background: #d86b4a;                   /* orange bouton */
  cursor: pointer;
  transition: filter .15s ease, transform .04s ease-in-out;
}
.signup-btn:hover{ filter: brightness(.96); }
.signup-btn:active{ transform: translateY(1px); }

/* Message retour */
.signup-msg{
  margin: 4px 0 0;
  min-height: 1.2em;
  font-size: 14px;
}

/* Variante compacte sur petits écrans */
@media (max-width: 480px){
  .signup-card{ padding: 18px; border-radius: 12px; }
  .signup-btn{ height: 58px; font-size: 18px; }
}


#brevo-subscribe .sib-form,
#brevo-subscribe .sib-container--large { background:transparent!important; box-shadow:none!important; padding:0!important; }
#brevo-subscribe .entry__field{ margin:0 0 14px!important; }
#brevo-subscribe input[type="email"], #brevo-subscribe input[type="text"]{
  width:100%!important; height:58px!important; border:1px solid rgba(0,0,0,.15)!important;
  border-radius:10px!important; padding:0 16px!important; font-size:18px!important; background:#fff!important;
}
#brevo-subscribe .sib-form-block__button{
  width:100%!important; height:64px!important; border-radius:12px!important; font-weight:800!important;
  font-size:20px!important; color:#fff!important; background:#d86b4a!important; border:none!important; cursor:pointer;
}

/* Caché par défaut (desktop) */
#fab-nav { display: none; }   /* ou .fab-interviews */

/* Visible et stylé en mobile uniquement */
@media (max-width: 768px){
  #fab-nav{             /* ou .fab-interviews */
    display: inline-flex;
    position: fixed; right: 16px; bottom: 16px;
    padding: 12px 14px; border-radius: 999px;
    background:#111; color:#fff; text-decoration:none; font-weight:600;
    box-shadow: 0 10px 24px rgba(0,0,0,.18); z-index: 9999;
    transition: transform .08s ease, opacity .2s ease;
  }
  #fab-nav:active{ transform: translateY(1px); }
  @supports(padding:max(0px)){
    #fab-nav{ bottom: max(16px, env(safe-area-inset-bottom)); right: max(16px, env(safe-area-inset-right)); }
  }
}

#fab-nav { display:none; }
@media (hover:none) and (pointer:coarse){
  #fab-nav { display:inline-flex; /* + le style */ }
}

/* Masquer le badge */
.grecaptcha-badge{ visibility: hidden !important; }

