/* ================================================
   Mona Mechekour – Ergothérapeute
   Responsive CSS – Mobile First
   ================================================ */

/* ---- Variables ---- */
:root {
  --green-dark:   #1e4a38;   /* vert forêt – boutons, nav, accents */
  --green:        #2a7a4f;   /* vert secondaire */
  --green-mid:    #226040;
  --green-light:  #ddeee6;   /* très doux */
  --green-bg:     #f0f5f2;   /* vert très doux pour sections alternées */
  --gold:         #c9912a;   /* ambre chaud – filets, highlights */
  --navy:         #102a43;   /* bleu nuit – titres h1/h2/h3 */
  --text:         #243b53;   /* texte corps – slate foncé, plus lisible */
  --text-light:   #627d98;   /* texte muet – gris-bleu */
  --white:        #fff;
  --gray-bg:      #f6f3ee;   /* crème chaud – plus accueillant que le bleuté */
  --border:       #d9e2ec;   /* bordure neutre */
  --radius:       8px;
  --shadow:       0 2px 12px rgba(16,42,67,0.08);
  --transition:   0.25s ease;
  --max-width:    1100px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.85;
  font-size: 16.5px;
}

/* TOP BAR supprimée — styles conservés pour compatibilité éventuelle */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Logo / Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: var(--green-dark);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.nav-brand::after {
  content: 'Retour à l\'accueil';
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 100;
}
.nav-brand:hover::after {
  opacity: 1;
}
.nav-brand img {
  height: 48px;   /* fixe la hauteur — évite que img{height:auto} écrase l'attribut */
  width: auto;
  display: block;
}
.nav-brand .brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-brand .brand-title {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav links */
.nav-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--green-light);
  padding: 16px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.nav-menu.open { display: block; }

.nav-menu li { position: relative; }
.nav-menu > li > a,
.nav-menu > li > button {
  display: block;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > button:hover { background: var(--green-bg); text-decoration: none; }

/* Dropdown */
.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7em;
}
.dropdown-menu {
  display: none;
  background: var(--green-bg);
  padding: 4px 0 4px 16px;
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 24px;
  font-size: 0.84rem;
  color: var(--green-mid);
  font-weight: 500;
}
.dropdown-menu a:hover { color: var(--green-dark); text-decoration: none; background: var(--green-light); }

/* ── Espace patient dans la nav ── */
.nav-menu > li > a.nav-espace,
.nav-espace {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark) !important;
  border: 2px solid var(--green);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  margin: 3px 16px;
}
.nav-menu > li > a.nav-espace:hover,
.nav-espace:hover {
  background: var(--green);
  color: white !important;
  text-decoration: none;
  transform: scale(1.03);
}
@media (min-width: 900px) {
  .nav-menu > li > a.nav-espace,
  .nav-espace {
    margin: 0 0 0 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
  }
}

/* ── Bouton téléphone dans la nav ── */
.nav-menu > li > a.nav-phone,
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark) !important;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 12px;
  margin: 3px 16px;
  border-radius: 8px;
  background: var(--green-light);
  transition: background var(--transition), color var(--transition);
}
.nav-menu > li > a.nav-phone:hover,
.nav-phone:hover {
  background: var(--green);
  color: white !important;
  text-decoration: none;
}
@media (min-width: 900px) {
  .nav-menu > li > a.nav-phone,
  .nav-phone {
    margin: 0 0 0 4px;
    padding: 5px 10px;
    font-size: 0.78rem;
  }
}

/* CTA button in nav — même forme que nav-phone, couleurs inversées */
.nav-menu > li > a.nav-cta,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dark) !important;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 12px;
  margin: 3px 16px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-menu > li > a.nav-cta:hover,
.nav-cta:hover {
  background: var(--green) !important;
  color: var(--white) !important;
  text-decoration: none;
}
@media (min-width: 900px) {
  .nav-menu > li > a.nav-cta,
  .nav-cta {
    margin: 0 0 0 4px;
    padding: 5px 10px;
    font-size: 0.78rem;
  }
}

/* Mobile nav — boutons pleine largeur */
@media (max-width: 899px) {
  .nav-menu > li > a.nav-phone,
  .nav-menu > li > a.nav-cta,
  .nav-menu > li > a.nav-espace {
    display: flex;
    white-space: normal;
    box-sizing: border-box;
    width: calc(100% - 32px);
    margin: 4px 16px;
    justify-content: center;
    text-align: center;
  }
}

/* Desktop nav */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    top: auto; left: auto; right: auto;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    flex: 1;                      /* prend tout l'espace après le logo */
    margin-left: 8px;
    justify-content: flex-start;  /* liens réguliers calés à gauche */
  }
  /* Pousse "Contacter Mona" à droite */
  .nav-menu > li:nth-last-child(2) {
    margin-left: auto;
    display: flex;
    align-items: center;
  }
  /* Mon espace Ergo — séparateur vertical propre */
  .nav-menu > li:last-child {
    display: flex;
    align-items: center;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid var(--border);
  }
  .nav-menu > li > a,
  .nav-menu > li > button {
    padding: 8px 9px;
    font-size: 0.81rem;
    white-space: nowrap;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    padding: 8px 0;
    z-index: 200;
  }
  .dropdown-menu a { padding: 10px 18px; }
  .nav-menu li:hover .dropdown-menu,
  .nav-menu li:focus-within .dropdown-menu { display: block; }
  .dropdown-menu.open { display: block; }
  .nav-menu > li > a.nav-cta,
  .nav-cta {
    margin: 0;
    padding: 7px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: 8px !important;
  }
  .nav-menu > li > a.nav-espace,
  .nav-espace {
    margin: 0;
    padding: 7px 13px;
    font-size: 0.8rem;
  }
}

/* ================================================
   HERO 2026 — 2 colonnes, fond clair
   ================================================ */
.hero {
  background: linear-gradient(140deg, #f5f0ea 0%, #edf4f0 100%);
  padding: 48px 0 32px;
}
.hero-bg { display: none; } /* obsolète, remplacé par hero-visual */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: block; margin-top: 28px; }
  .hero-cards { height: 220px; }
  .hero-card-back { display: none; }
  .hero-card-front {
    width: 100%;
    height: 220px;
    bottom: auto;
    top: 0;
    left: 0;
    transform: none;
    z-index: 1;
    border: none;
  }
}
@media (max-width: 700px) {
  .bifurcation-grid { grid-template-columns: 1fr !important; }
}

.hero-content {
  color: var(--text);
  padding: 0;
}
.hero-label {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 10px;
  color: var(--navy);
}
.hero h1 span { color: var(--green-dark); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--text);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  padding: 14px 30px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-cta:hover {
  background: var(--green);
  text-decoration: none;
  color: var(--white);
  transform: translateY(-2px);
}

.hero-cta-alt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-cta-alt:hover { background: rgba(255,255,255,0.15); border-color: var(--white); text-decoration: none; color: var(--white); transform: translateY(-2px); }

/* Trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-pill {
  background: rgba(201,145,42,0.09);
  border: 1px solid rgba(201,145,42,0.28);
  color: var(--green-dark);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Hero image (legacy, non utilisé) */
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 28px 64px rgba(16,42,67,0.20);
  display: block;
}

/* Hero — cartes qui se chevauchent */
.hero-cards {
  position: relative;
  width: 100%;
  height: 360px;
}
.hero-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16,42,67,0.22);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Carte arrière : plus grande, légèrement inclinée */
.hero-card-back {
  width: 82%;
  height: 340px;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 1;
}
/* Carte avant : plus petite, inclinée dans l'autre sens, en bas à gauche */
.hero-card-front {
  width: 70%;
  height: 290px;
  bottom: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
  border: 4px solid var(--white);
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(135deg, #1a2332 0%, var(--green-dark) 100%);
  padding: 50px 0 40px;
  color: var(--white);
}
.page-hero .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-hero .page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}
.page-hero .hero-cta {
  margin-top: 20px;
  font-size: 0.88rem;
  padding: 12px 22px;
}

/* ================================================
   SECTIONS
   ================================================ */
section { padding: 60px 0; }
section.alt { background: var(--gray-bg); }
section.green-bg { background: var(--green-bg); }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
h2.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 40px;
}

/* ================================================
   CARDS / GRID
   ================================================ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
}
.card h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.card p { color: var(--text-light); font-size: 0.95rem; }

.card-link {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
}
.card-link:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.12); text-decoration: none; }
.card-link h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 8px; }
.card-link p { color: var(--text-light); font-size: 0.92rem; }
.card-link .card-arrow { color: var(--green); font-size: 1.2rem; margin-top: 12px; display: block; }

/* ================================================
   TEXT CONTENT
   ================================================ */
.content-block { max-width: 780px; }
.content-block h2 { font-size: 1.5rem; color: var(--green-dark); margin: 36px 0 12px; }
.content-block h3 { font-size: 1.15rem; color: var(--green-mid); margin: 28px 0 10px; }
.content-block p { margin-bottom: 16px; color: var(--text); }
.content-block ul { margin: 12px 0 20px 20px; list-style: disc; }
.content-block ul li { margin-bottom: 8px; color: var(--text); }
.content-block strong { color: var(--green-dark); }

/* Process steps — homepage parcours */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.process-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.process-body h3 { margin: 0 0 8px; font-size: 1rem; color: var(--navy); }
.process-body p { font-size: 0.9rem; color: var(--text); margin: 0 0 6px; line-height: 1.6; }
.process-note {
  font-size: 0.83rem;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 10px !important;
}
.process-arrow {
  text-align: center;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 0;
}
@media (min-width: 700px) {
  .process-steps {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .process-step {
    flex: 1;
    flex-direction: column;
    gap: 12px;
  }
  .process-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 1.4rem;
  }
}

/* Step boxes */
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step-body h3 { margin-top: 0; }

/* Highlight box */
.highlight-box {
  background: #fdf5e8;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: #4a3510; font-size: 0.95rem; }

/* Info note */
.info-note {
  background: #fff8e6;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-size: 0.92rem;
  color: #7a5900;
}

/* ================================================
   PROFILE SECTION (index)
   ================================================ */
.profile-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .profile-section { grid-template-columns: 280px 1fr; }
}
.profile-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  margin: 0 auto;
}

/* Photo portrait dans la section À propos */
.profile-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.profile-photo-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid var(--green-light);
  box-shadow: 0 6px 24px rgba(30,74,56,0.15);
  display: block;
}
.profile-photo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.profile-photo-role {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 2px 0 0;
}

/* Carte logo dans la section À propos */
.profile-logo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.profile-logo-img {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.profile-logo-caption {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ================================================
   SCHEDULE TABLE
   ================================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 600px) { .schedule-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .schedule-grid { grid-template-columns: repeat(4, 1fr); } }

.schedule-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow);
  text-align: center;
}
.schedule-item h4 { color: var(--green-dark); font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.schedule-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ================================================
   REVIEWS / TESTIMONIALS
   ================================================ */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .reviews { grid-template-columns: 1fr 1fr; } }
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(30,74,56,0.08);
  border-left: 4px solid var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: -8px;
  display: block;
  opacity: 0.6;
}
.review p {
  font-size: 0.93rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review .reviewer { font-weight: 700; font-size: 0.88rem; color: var(--navy); display: block; }
.review .stars { color: var(--gold); font-size: 0.85rem; margin-top: 2px; letter-spacing: 1px; }

/* ================================================
   FAQ
   ================================================ */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question::after { content: '＋'; font-size: 1.2rem; flex-shrink: 0; color: var(--green); }
.faq-question.open::after { content: '－'; }
.faq-answer {
  display: none;
  padding: 0 0 18px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.contact-card h3 { color: var(--green-dark); margin-bottom: 14px; font-size: 1.1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-info-item p { margin: 0; font-size: 0.95rem; }
.contact-info-item p strong { display: block; color: var(--green-dark); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-item a { color: var(--text); }
.contact-info-item a:hover { color: var(--green); }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 300px; border: 0; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  padding: 32px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 8px; }
.cta-banner p { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white {
  display: inline-block;
  padding: 14px 30px;
  background: var(--white);
  color: var(--green-dark);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-white:hover { background: var(--green-light); text-decoration: none; transform: translateY(-2px); }

/* ================================================
   BILAN TIMELINE — compact, léger
   ================================================ */
.bilan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 700px) {
  .bilan-grid { grid-template-columns: 1fr 1fr; }
}
.bilan-item {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
@media (min-width: 700px) {
  .bilan-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .bilan-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 699px) {
  .bilan-item:last-child { border-bottom: none; }
}
.bilan-num {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 6px;
  padding: 2px 8px;
  background: var(--green-light);
  border-radius: 4px;
}
.bilan-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.bilan-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0 0 10px;
  line-height: 1.65;
}
.bilan-item p:last-child { margin-bottom: 0; }

/* Pills pour outils / adaptations */
.tool-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tool-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
}

/* ================================================
   ABOUT / QUI SUIS-JE — section accueil
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 300px 1fr; gap: 64px; }
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-photo-wrap {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}
.about-photo {
  width: 260px;
  height: 310px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(16,42,67,0.15);
  display: block;
}
.about-photo-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(30,74,56,0.3);
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.about-chip {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
}
.about-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about-content .lead { margin-bottom: 14px; }

/* ================================================
   SITUATION CARDS — page aménagement domicile
   ================================================ */
.situation-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 680px) {
  .situation-cards { grid-template-columns: 1fr 1fr; }
}
.situation-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 20px 20px 18px;
  border-left: 4px solid var(--green-light);
  box-shadow: 0 2px 8px rgba(16,42,67,0.06);
  transition: border-color 0.2s ease;
}
.situation-card:hover { border-left-color: var(--green); }
.situation-card .sit-icon { font-size: 1.3rem; margin-bottom: 8px; line-height: 1; display: block; }
.situation-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin: 0 0 5px; }
.situation-card p { font-size: 0.84rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* Aides financières pills */
.aides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.aide-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 100px;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1.5px solid rgba(30,74,56,0.3);
}

/* Périmètre / info-box neutre */
.scope-box {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.scope-box p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.7; }
.scope-box strong { color: var(--navy); }

/* ================================================
   WORK CARDS — "Ce sur quoi on travaille"
   ================================================ */
.work-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 680px) {
  .work-cards { grid-template-columns: 1fr 1fr; }
}
.work-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green-dark);
}
.work-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1;
}
.work-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.work-card .work-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.work-card .work-meta strong {
  color: var(--navy);
  font-weight: 600;
}
.work-adapt-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin: 14px 0 6px;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 20px 0 16px;
}
.footer-compact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 36px; width: auto;
  opacity: 0.9;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  align-items: center;
  font-size: 0.82rem;
}
.footer-info span { color: rgba(255,255,255,0.7); }
.footer-info a { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.footer-info a:hover { color: var(--green-light); text-decoration: none; }
.footer-legal {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--green-light); text-decoration: none; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 10px;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* ================================================
   UTILITY
   ================================================ */
.btn-primary {
  display: inline-block;
  padding: 13px 26px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-primary:hover { background: var(--green-dark); text-decoration: none; color: var(--white); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  padding: 13px 26px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-secondary:hover { background: var(--green); color: var(--white); text-decoration: none; transform: translateY(-2px); }

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* Two-col text layout */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .two-col-text { grid-template-columns: 1fr 1fr; } }

/* Specialty badges */
.specialty-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.badge {
  padding: 7px 16px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================================================
   LISIBILITÉ — inspiré des meilleures pratiques
   ================================================ */

/* Paragraphe d'accroche */
.lead {
  font-size: 1.13rem;
  line-height: 1.75;
  color: #3a3a3a;
  max-width: 700px;
  margin-bottom: 28px;
}

/* Section label au-dessus des H2 */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

/* H2 plus imposant */
h2.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

/* Texte fort en vert foncé */
.content-block strong,
strong.key { color: var(--green-dark); }

/* Espacement entre paragraphes dans content-block */
.content-block p + p { margin-top: 18px; }
.content-block h2 { margin-top: 48px; }
.content-block h3 { margin-top: 32px; }

/* Clé de lecture : box récap */
.recap-box {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.recap-box p { margin: 0; font-size: 0.96rem; line-height: 1.75; }
.recap-box ul { margin: 8px 0 0 18px; list-style: disc; }
.recap-box ul li { margin-bottom: 6px; font-size: 0.95rem; }

/* Cartes prioritaires (index) */
.priority-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .priority-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .priority-cards { grid-template-columns: 2fr 1fr 1fr; }
}

.priority-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.09);
  padding: 32px 26px;
  border-top: 4px solid var(--gold);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.priority-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); text-decoration: none; }
.priority-card.featured { border-top-color: var(--green-dark); }
.priority-card .card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.priority-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.priority-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.priority-card .card-cta { font-size: 0.85rem; font-weight: 700; color: var(--green); }

/* Section séparateur visuel */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 28px;
}
.section-divider.center { margin: 12px auto 28px; }

/* Table comparaison */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 24px 0;
}
.compare-table th {
  background: var(--green-dark);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.compare-table tr:nth-child(even) td { background: var(--green-bg); }

/* Numéros d'étape stylisés */
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(30,74,56,0.30);
}

/* Section aérée */
section { padding: 68px 0; }
section.compact { padding: 44px 0; }

/* Wrapper collé en haut – élimine le gap entre top-bar et header */
.site-top { position: sticky; top: 0; z-index: 1000; }
.top-bar { position: static; }
.site-header { position: static; box-shadow: 0 2px 8px rgba(0,0,0,0.10); }

/* ================================================
   TITRES EN BLEU NUIT – palette profesionnelle
   (inspiré ergotherapeute-paris.fr : le vert reste
   uniquement pour nav, boutons, accents)
   ================================================ */
/* Titres en bleu nuit sur fond clair */
h1, h2, h3, h4 { color: var(--navy); }
h2.section-title { color: var(--navy); }
.content-block h2,
.content-block h3 { color: var(--navy); }
.card h3,
.card-link h3,
.priority-card h3,
.contact-card h3 { color: var(--navy); }
.profile-name { color: var(--navy); }
.step-body h3 { color: var(--navy); }
.schedule-item h4 { color: var(--navy); }
/* .review .reviewer — défini plus haut */
.content-block strong,
strong.key { color: var(--navy); }
.faq-question { color: var(--navy); }

/* Exceptions : titres sur fond sombre restent blancs */
.page-hero h1,
.page-hero h2,
.cta-banner h2,
.cta-banner h3 { color: #fff; }

/* ================================================
   HOMEPAGE REFONTE — Topics + Parcours visuel + Reveal
   ================================================ */

/* --- Topic tags / pills (section sujets) --- */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.topic-tag:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30,74,56,0.12);
  text-decoration: none;
}

/* --- Parcours visuel (icônes + badge numéro) --- */
.parcours-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 44px;
}
@media (min-width: 700px) {
  .parcours-visual {
    flex-direction: row;
    align-items: flex-start;
  }
}
.parcours-item {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  flex: 1;
  box-shadow: 0 2px 16px rgba(16,42,67,0.07);
}
.parcours-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.parcours-emoji {
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}
.parcours-badge {
  position: absolute;
  bottom: -6px;
  right: -12px;
  width: 26px;
  height: 26px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(30,74,56,0.25);
}
.parcours-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.parcours-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.parcours-item .parcours-note {
  display: inline-block;
  background: var(--green-light);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.8rem;
  color: var(--green-dark);
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.5;
}
/* Séparateur entre étapes */
.parcours-sep {
  flex-shrink: 0;
  background: rgba(30,74,56,0.15);
  border-radius: 2px;
}
@media (max-width: 699px) {
  .parcours-sep { width: 2px; height: 32px; margin: 0 auto; }
}
@media (min-width: 700px) {
  .parcours-sep { width: 32px; height: 2px; margin-top: 62px; }
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

