/* =========================================================
   Sarah Abdellaoui — Psychologue du travail
   Feuille de style principale
   Palette : sauge apaisante + terre douce + encre profonde
   ========================================================= */

:root {
  /* Couleurs — accordées au branding "Boost Ton Projet" */
  --ink: #2b3548;          /* texte principal, bleu-nuit profond */
  --ink-soft: #55607a;     /* texte secondaire */
  --sage: #617da4;         /* accent principal, bleu ardoise (couleur du logo) */
  --sage-deep: #4c6489;    /* bleu ardoise foncé pour survols */
  --clay: #d18aa9;         /* accent chaud, rose poudré (texte du logo) */
  --cream: #f5f4f7;        /* fond clair, blanc légèrement lavande */
  --cream-warm: #eceaf1;   /* fond alterné, lavande très clair */
  --white: #fffdfb;
  --line: #dcd9e4;         /* filets */

  /* Typographie */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Mesures */
  --maxw: 1120px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -24px rgba(35, 48, 43, 0.35);
  --shadow-soft: 0 8px 30px -18px rgba(35, 48, 43, 0.28);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
}

/* ---------- Reset léger ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; min-width: 0; }

/* Aucun débordement horizontal possible, sur aucun écran */
html, body { max-width: 100%; overflow-x: hidden; }
h1, h2, h3, h4, p, li, span, a { overflow-wrap: break-word; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.12; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Utilitaires ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-block;
  margin-bottom: 18px;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--sage-deep); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-deep); transform: translateY(-2px); }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 236, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  min-height: var(--nav-h);
  padding: 12px 0;
}
.brand {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;   /* le nom ne se coupe jamais */
  flex: 0 0 auto;
  line-height: 1.2;
}
.brand span { color: var(--sage-deep); }
.brand small {
  display: block;
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
  white-space: nowrap;
}
/* L'espacement entre les liens s'adapte à la largeur disponible */
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); flex: 0 1 auto; }
.nav-links a { font-size: 0.94rem; font-weight: 500; color: var(--ink-soft); transition: color var(--transition); position: relative; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--sage); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Bouton de rendez-vous du menu déroulant.
   Sélecteur volontairement précis pour l'emporter sur « .nav-links a »,
   sinon il hériterait de la couleur des liens et deviendrait illisible. */
.nav-links a.nav-cta-mobile { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.nav-cta .btn { white-space: nowrap; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 96px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(1.95rem, 6.4vw, 4rem); letter-spacing: -0.02em; margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero .lead { margin-bottom: 36px; font-size: 1.22rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 20px; font-size: 0.9rem; color: var(--ink-soft); }
.hero-trust .stars { color: var(--clay); letter-spacing: 2px; }
.hero-trust strong { color: var(--ink); }

.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.hero-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.hero-card p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 22px; }
.pill-list { display: flex; flex-direction: column; gap: 14px; }
.pill {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--cream); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 500; line-height: 1.4;
  border-left: 3px solid var(--sage);
  transition: transform var(--transition), background var(--transition);
}
.pill:hover { transform: translateX(4px); background: var(--cream-warm); }
.pill-icon {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px;
  background: var(--sage); color: var(--white);
  display: grid; place-items: center; font-family: var(--display); font-size: 1.05rem;
}
.hero-blob {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(97,125,164,0.35), rgba(209,138,169,0.15));
  filter: blur(10px); top: -60px; right: -80px; z-index: 1;
}

/* ---------- Sections génériques ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-alt { background: var(--cream-warm); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink .eyebrow { color: var(--sage); }
.section-ink .lead { color: rgba(246,243,236,0.75); }

.section-head { max-width: 62ch; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.55rem, 4.4vw, 2.9rem); letter-spacing: -0.015em; margin-bottom: 20px; }

/* ---------- Piliers (accueil) ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num {
  font-family: var(--display); font-size: 0.9rem; color: var(--sage-deep);
  border: 1px solid var(--line); width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 24px;
}
.pillar h3 { font-size: 1.4rem; margin-bottom: 14px; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 24px; flex: 1; }
.pillar-link { font-weight: 600; color: var(--sage-deep); font-size: 0.95rem; display: inline-flex; gap: 8px; align-items: center; }
.pillar-link .btn-arrow { transition: transform var(--transition); }
.pillar:hover .pillar-link .btn-arrow { transform: translateX(4px); }

/* ---------- Approche (bandeau) ---------- */
.approach-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.approach-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
/* Version par défaut : sur fond clair */
.value-item { padding: 22px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.value-item h4 { color: var(--ink); font-size: 1.1rem; margin-bottom: 8px; }
.value-item p { color: var(--ink-soft); font-size: 0.9rem; }

/* Version sur fond sombre (section-ink) */
.section-ink .value-item { background: rgba(255,255,255,0.06); border-color: rgba(246,243,236,0.12); }
.section-ink .value-item h4 { color: var(--white); }
.section-ink .value-item p { color: rgba(246,243,236,0.7); }

/* ---------- Étapes (process) ---------- */
.steps { display: grid; gap: 0; margin-top: 20px; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 32px 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font-family: var(--display); font-size: 2.4rem; color: var(--sage); line-height: 1; }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); max-width: 62ch; }

/* ---------- Bloc offre / tarif ---------- */
.offer-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow-soft);
}
.offer-price { font-family: var(--display); font-size: 2.4rem; color: var(--ink); margin: 8px 0 4px; }
.offer-price small { font-family: var(--body); font-size: 1rem; color: var(--ink-soft); font-weight: 500; }
.offer-list { list-style: none; margin: 26px 0; display: grid; gap: 14px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.offer-list li::before { content: "✓"; color: var(--sage-deep); font-weight: 700; flex: 0 0 auto; }

.todo { background: #fff6e9; border: 1px dashed var(--clay); color: #8a5738; padding: 3px 9px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; }

.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cream-warm); border: 1px solid var(--line); color: var(--sage-deep); font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 100px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.free-tag { color: var(--clay); font-weight: 600; }

/* ---------- Avis ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform var(--transition);
}
.review:hover { transform: translateY(-4px); }
.review .stars { color: var(--clay); letter-spacing: 2px; margin-bottom: 16px; }
.review p { font-style: italic; color: var(--ink); margin-bottom: 18px; }
.review cite { font-style: normal; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- CTA final ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.55rem, 4.6vw, 3rem); margin-bottom: 20px; }
.cta-band .lead { margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page intérieure : en-tête ---------- */
.page-hero { padding: 72px 0 56px; background: var(--cream-warm); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.75rem, 5.4vw, 3.4rem); letter-spacing: -0.02em; margin-bottom: 20px; max-width: 18ch; }
.page-hero .lead { font-size: 1.2rem; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--sage-deep); }

/* ---------- Contenu riche ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.9rem; margin: 44px 0 18px; }
.prose h3 { font-size: 1.35rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose ul { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.prose ul li { padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.prose ul li::before { content: "→"; position: absolute; left: 0; color: var(--sage); }

/* ---------- Bloc "pour qui" ---------- */
.forwho { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.forwho-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.forwho-card h4 { font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.forwho-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- À propos ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.about-portrait {
  border-radius: var(--radius); aspect-ratio: 4/5; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.credentials { display: grid; gap: 14px; margin-top: 30px; }
.credential { display: flex; gap: 14px; align-items: center; padding: 16px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.credential-icon { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: var(--cream-warm); display: grid; place-items: center; color: var(--sage-deep); }
.credential strong { display: block; font-size: 0.98rem; }
.credential span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; gap: 26px; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.contact-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-methods { display: grid; gap: 16px; margin-top: 24px; }
.contact-method { display: flex; gap: 14px; align-items: center; }
.contact-method .ci { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: var(--cream); display: grid; place-items: center; color: var(--sage-deep); }
.contact-method a:hover { color: var(--sage-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,243,236,0.72); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand { font-family: var(--display); font-size: 1.4rem; color: var(--white); margin-bottom: 14px; }
.footer-brand + p { font-size: 0.94rem; max-width: 36ch; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; font-family: var(--body); font-weight: 600; }
.footer-col a { display: block; font-size: 0.94rem; margin-bottom: 12px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(246,243,236,0.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }

/* ---------- Tableau des formules ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; align-items: start; }
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px; position: relative;
}
.price-card-featured {
  border: 2px solid var(--sage); box-shadow: var(--shadow-soft);
}
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: var(--white); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.price-sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 18px; }
.price-main { font-family: var(--display); font-size: 2.1rem; color: var(--sage-deep); line-height: 1.1; }
.price-rest { font-size: 0.86rem; color: var(--ink-soft); margin: 10px 0 20px; line-height: 1.6; }
.price-free { color: #2f6b41; font-weight: 600; }
.price-card .offer-list { margin-top: 0; }

.legal-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 16px; line-height: 1.6; }
.legal-note a { text-decoration: underline; }

@media (max-width: 940px) { .pricing { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Pages légales ---------- */
.prose h2 { font-size: 1.5rem; margin-top: 44px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin-top: 28px; margin-bottom: 10px; color: var(--sage-deep); }
.prose ul { margin: 14px 0 14px 22px; }
.prose li { margin-bottom: 9px; }
.prose mark {
  background: #fdf3d4; color: #6b5510; padding: 2px 7px;
  border-radius: 5px; font-size: 0.9em; font-weight: 500;
}

.privacy-table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  font-size: 0.92rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.privacy-table th {
  text-align: left; padding: 13px 16px; background: var(--cream-warm);
  font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.privacy-table td { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.tag-in, .tag-out {
  display: inline-block; font-size: 0.72rem; padding: 2px 8px;
  border-radius: 20px; margin-left: 6px; font-weight: 600; white-space: nowrap;
}
.tag-in  { background: #e3efe6; color: #2f6b41; }
.tag-out { background: #fbe9e7; color: #a13b28; }

.footer-legal a { display: inline; margin: 0; }
.footer-legal a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Animations d'apparition ---------- */
/* Le contenu n'est masqué que si JavaScript est actif : sans JS, tout reste visible. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Lien d'évitement (accessibilité clavier) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-size: 0.92rem;
}
.skip-link:focus { left: 0; }

/* =========================================================
   RESPONSIVE
   Du plus large au plus étroit. Chaque palier ne corrige
   que ce qui commence réellement à se tasser.
   ========================================================= */

/* ---- Grands écrans un peu justes : on resserre la barre ---- */
@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.89rem; }
  .brand { font-size: 1.18rem; }
  .nav-cta .btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* ---- Bascule vers le menu mobile ----
   Six entrées + un bouton ne tiennent plus proprement
   en dessous de cette largeur : on passe au menu déroulant. */
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .brand { font-size: 1.32rem; }
  .nav-cta .btn { padding: 14px 26px; font-size: 0.94rem; }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    box-shadow: var(--shadow-soft);
    z-index: 99;
  }
  .site-header { position: sticky; }
  .nav { position: relative; }
}

/* ---- Tablette ---- */
@media (max-width: 940px) {
  .hero-grid, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .reviews { grid-template-columns: repeat(2, 1fr); }
  .hero-blob { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .forwho { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 26px; }
}

/* ---- Mobile ---- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }

  /* ===== BARRE DU HAUT =====
     Le nom et le menu, rien d'autre : c'est la seule façon
     que ça tienne sans déborder sur un écran de téléphone.
     Le bouton de rendez-vous passe dans le menu déroulant. */
  .nav { min-height: 60px; padding: 10px 0; gap: 12px; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { padding: 6px 0 6px 8px; margin-right: -8px; }
  .brand { font-size: 1.06rem; }
  .brand small { font-size: 0.56rem; letter-spacing: 0.09em; white-space: nowrap; }

  .nav.open .nav-links { padding: 20px; gap: 4px; }
  .nav.open .nav-links a { padding: 12px 0; width: 100%; }

  /* Le bouton de rendez-vous, en tête du menu ouvert */
  .nav-links a.nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 14px;
    padding: 15px 24px;
    background: var(--sage-deep);
    color: var(--white);
    font-weight: 600;
    border-radius: 100px;
  }
  .nav-links a.nav-cta-mobile:hover,
  .nav-links a.nav-cta-mobile:active { color: var(--white); background: var(--ink); }
  .nav-links a.nav-cta-mobile::after { display: none; content: none; }
  .pillars, .reviews { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 64px; }
  .step { grid-template-columns: 52px 1fr; gap: 16px; }
  .step-num { font-size: 1.8rem; }
  .offer-card, .contact-card, .forwho-card, .price-card { padding: 26px; }
  .approach-values { grid-template-columns: 1fr; }
  .about-portrait { max-width: 340px; margin: 0 auto; }

  /* Les boutons prennent toute la largeur : plus faciles à toucher */
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }

  /* Le pied de page passe en colonne */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Le tableau des sous-traitants défile plutôt que de déborder */
  .privacy-table { display: block; overflow-x: auto; white-space: nowrap; }

  /* Textes courants : un peu plus resserrés, plus lisibles sur petit écran */
  .hero .lead { font-size: 1.05rem; margin-bottom: 30px; }
  .lead { font-size: 1.02rem; }
  .page-hero { padding: 44px 0 38px; }
  .page-hero .lead { font-size: 1.05rem; }
  .page-hero h1 { max-width: none; }
  .section-head { margin-bottom: 36px; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; margin-bottom: 12px; }

  /* La ligne d'avis passe sur deux lignes au lieu de s'écraser */
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Cartes et blocs : moins de marge intérieure, plus de contenu visible */
  .hero-card { padding: 26px; }
  .pill { padding: 14px 16px; font-size: 0.92rem; }
  .credential { padding: 14px 16px; }
  .prose { max-width: none; }
  .prose h2 { font-size: 1.32rem; margin-top: 34px; }
  .prose h3 { font-size: 1.05rem; }
  .offer-price, .price-main { font-size: 1.9rem; }
  .step h3 { font-size: 1.15rem; }
  .pillar { padding: 30px 26px; }
  .pillar h3 { font-size: 1.22rem; }
  .forwho-card h4 { font-size: 1.05rem; }

  /* Le badge « la plus choisie » ne dépasse plus de sa carte */
  .pricing { margin-top: 28px; }
  .price-card-featured { margin-top: 14px; }
}

/* ---- Petits téléphones ---- */
@media (max-width: 400px) {
  .brand { font-size: 1.1rem; }
  .brand small { font-size: 0.6rem; letter-spacing: 0.1em; }
  .nav-cta .btn { padding: 11px 16px; font-size: 0.85rem; }
  .container { padding: 0 16px; }
  .offer-card, .contact-card, .forwho-card, .price-card { padding: 22px; }
  .price-main { font-size: 1.8rem; }
}
