/* =========================================================
   ESPACE AUX BOIS — MASTER CSS (Clean & Consolidated)
   ========================================================= */


/* =========================================================
   1. FLOATING CTA — PRENDRE RENDEZ-VOUS
   ========================================================= */
.floating-rdv {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 30px;
    background: #7A8D73;
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: .02em;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 12px 35px rgba(122,141,115,.22);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
    z-index: 99999;
}

.floating-rdv:hover {
    background: #6B7E65;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(122,141,115,.30);
}

.floating-rdv:active {
    transform: translateY(-1px);
}

/* Hide floating CTA on Contact and Rendez-vous pages */
.page-id-8 .floating-rdv,
.page-id-2302 .floating-rdv {
    display: none !important;
}


/* =========================================================
   2. LES 4 PILIERS
   ========================================================= */
.approche-section {
    max-width: 1180px;
    width: 100%;
    margin: 90px auto;
    padding: 0 25px;
    box-sizing: border-box;
}

.approche-header {
    text-align: center;
    margin-bottom: 55px;
}

.approche-header h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #384638;
}

.approche-divider {
    width: 55px;
    height: 3px;
    background: #D7B79A;
    margin: 0 auto;
    border-radius: 30px;
}

.approche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.approche-item {
    padding: 0 25px;
    text-align: center;
    position: relative;
}

.approche-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,.08);
}

.approche-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 2px solid #C7D0C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A8D73;
}

.approche-icon svg {
    width: 26px;
    height: 26px;
}

.approche-icon.nutrition {
    color: #D5A190;
}

.approche-item h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #384638;
}

.approche-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}


/* =========================================================
   3. INFORMATIONS PRATIQUES
   ========================================================= */
.infos-section {
    max-width: 1180px;
    width: 100%;
    margin: 90px auto;
    padding: 0 25px;
    box-sizing: border-box;
}

.infos-header {
    text-align: center;
    margin-bottom: 50px;
}

.infos-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #384638;
    margin: 0 0 15px;
}

.infos-divider {
    width: 55px;
    height: 3px;
    background: #D7B79A;
    margin: 0 auto;
    border-radius: 20px;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 170px));
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: #FBF8F4;
    border-radius: 22px;
    padding: 28px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 235px;
    transition: transform .35s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 2px solid #C7D0C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A8D73;
}

.info-icon svg {
    width: 26px;
    height: 26px;
}

.info-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
    color: #384638;
}

.info-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}


/* =========================================================
   4. DÉROULEMENT CONSULTATION
   ========================================================= */
.consultation-section {
    max-width: 1180px;
    width: 100%;
    margin: 110px auto;
    padding: 0 25px;
    box-sizing: border-box;
}

.consultation-header {
    text-align: center;
    margin-bottom: 70px;
}

.consultation-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #384638;
    margin: 0 0 15px;
}

.consultation-divider {
    width: 55px;
    height: 3px;
    background: #D7B79A;
    border-radius: 30px;
    margin: 0 auto;
}

.consultation-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.consultation-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: #D8DDD2;
    z-index: 0;
}

.consultation-step {
    position: relative;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}

.consultation-step:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,.06);
    padding-bottom: 25px;
}

.step-number {
    width: 36px;
    height: 36px;
    margin: 0 auto 28px;
    background: #7A8D73;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 5;
    transition: transform .3s ease;
}

.consultation-step:hover .step-number {
    transform: scale(1.08);
}

.consultation-step h3 {
    font-size: 24px;
    color: #384638;
    margin: 0 0 15px;
    line-height: 1.3;
}

.consultation-step p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}


/* =========================================================
   5. À QUI CELA CORRESPOND ?
   ========================================================= */
.approche-correspond {
    padding: 80px 25px;
    background: #f8f6f1;
    max-width: 1180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.approche-container {
    max-width: 1300px;
    margin: 0 auto;
}

.approche-intro {
    max-width: 950px;
    margin: 0 auto 50px;
    text-align: center;
}

.approche-label {
    display: inline-block;
    color: #78945e;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.approche-intro h2 {
    color: #394735;
    font-size: 40px;
    line-height: 1.25;
    margin: 0 0 25px;
}

.approche-intro p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 15px;
}

.approche-listes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.approche-colonne {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.approche-colonne h3 {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #394735;
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 30px;
}

.icone-rond {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.vert {
    background: #dce8d4;
    color: #62804e;
}

.rouge {
    background: #f1ded9;
    color: #b56a5d;
    font-size: 30px;
}

.approche-colonne ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approche-colonne li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #78945e;
    font-weight: bold;
    font-size: 21px;
}

.attention li::before {
    content: "×";
    position: absolute;
    left: 2px;
    top: -2px;
    color: #b56a5d;
    font-weight: bold;
    font-size: 24px;
}


/* =========================================================
   6. HERO — MON APPROCHE
   ========================================================= */
.approche-hero {
    background: #f8f6f1;
    padding: 70px 20px 80px;
}

.approche-hero-container {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: stretch;
    max-width: 1400px;
    min-height: 620px;
    margin: 0 auto 90px;
    background: #f5f3ee;
    overflow: hidden;
}

.approche-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px 80px 85px;
}

.approche-hero-label {
    display: block;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7a8d73;
}

.approche-hero-content h1 {
    margin: 0 0 28px;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #30372f;
}

.approche-hero-intro {
    max-width: 560px;
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.6;
    color: #454b45;
}

.approche-hero-content > p:not(.approche-hero-intro) {
    max-width: 540px;
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.75;
    color: #60655f;
}

.approche-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.approche-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    padding: 15px 23px;
    background: #7a8d73;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.approche-hero-button span {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.approche-hero-button:hover {
    background: #687b62;
}

.approche-hero-button:hover span {
    transform: translateX(4px);
}

.approche-hero-button-outline {
    background: transparent !important;
    color: #222222 !important;
    border: 1.5px solid #7A8D73 !important;
}

.approche-hero-button-outline:hover {
    background: #7A8D73 !important;
    color: #ffffff !important;
}

.approche-hero-image {
    min-height: 620px;
    overflow: hidden;
}

.approche-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   7. HERO — ANNE
   ========================================================= */
.anne-hero {
    width: 100%;
    background: #FBF8F4;
}

.anne-hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 720px;
    align-items: center;
}

.anne-hero-content {
    padding: 80px 70px 80px 60px;
}

.anne-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #78945e;
    font-weight: 600;
    margin-bottom: 28px;
}

.anne-hero h1 {
    font-family: Georgia, serif;
    font-size: 66px;
    line-height: 1.08;
    font-weight: 400;
    color: #262626;
    margin: 0 0 35px;
}

.anne-hero h1 span {
    color: #7A8D73;
}

.anne-hero p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    max-width: 560px;
    margin: 0 0 22px;
}

.anne-btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #7A8D73;
    color: #fff !important;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s ease;
}

.anne-btn-primary:hover {
    background: #66785f;
    color: #fff !important;
    transform: translateY(-2px);
}

.anne-hero-image {
    height: 720px;
}

.anne-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 90px;
}


/* =========================================================
   8. VISION / 4 PRINCIPES
   ========================================================= */
.vision-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 40px;
}

.vision-photo {
    width: 100%;
    overflow: hidden;
}

.vision-photo img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
}

.vision-text {
    max-width: 600px;
}

.vision-subtitle {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7a8d73;
}

.vision-text h2 {
    margin: 0 0 28px;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.8px;
    color: #30372f;
}

.vision-text p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.75;
    color: #5c625b;
}

.vision-text .vision-bold {
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #30372f;
}

.vision-strip {
    max-width: 1200px;
    margin: 0 auto 110px;
    padding: 45px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(122, 141, 115, 0.25);
    border-bottom: 1px solid rgba(122, 141, 115, 0.25);
}

.vision-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 5px 30px;
}

.vision-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(122, 141, 115, 0.20);
}

.vision-circle {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 141, 115, 0.35);
    border-radius: 50%;
    background: #f8f7f3;
}

.vision-circle img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.vision-info {
    padding-top: 2px;
}

.vision-info h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    color: #30372f;
}

.vision-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #686d67;
}


/* =========================================================
   9. TÉMOIGNAGES / REVIEWS
   ========================================================= */
.reviews-anne-container {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 75px 55px 70px;
    background: #f5f3ee;
}

.reviews-anne-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.reviews-anne-label {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7a8d73;
}

.reviews-anne-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.7px;
    color: #30372f;
}

.reviews-anne-heading p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.65;
    color: #686d67;
}

.reviews-anne-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-anne-card {
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 34px 32px 30px;
    background: #ffffff;
    border: 1px solid rgba(122, 141, 115, 0.12);
    box-shadow: 0 8px 30px rgba(40, 45, 38, 0.04);
}

.review-stars {
    margin-bottom: 22px;
    font-size: 15px;
    letter-spacing: 3px;
    color: #7a8d73;
}

.review-anne-card blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #4e544e;
}

.review-author {
    margin-top: auto;
    padding-top: 28px;
}

.review-author strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #30372f;
}

.review-author span {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #7a8d73;
}

.review-author small {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.5;
    color: #92968f;
}

.reviews-google-note {
    margin-top: 32px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #92968f;
}


/* =========================================================
   10. UN ACCOMPAGNEMENT EN 5 ÉTAPES
   ========================================================= */
.timeline-section {
    padding: 100px 0;
    background: #F7F2EC;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.timeline-label {
    display: block;
    text-align: center;
    color: #7A8D73;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.timeline-container h2 {
    text-align: center;
    font-size: 48px;
    color: #2F2F2F;
    margin: 0 0 70px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.timeline-line {
    position: absolute;
    top: 22px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #D8DDD2;
    z-index: 1;
}

.timeline-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.timeline-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: #7A8D73;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    box-shadow: 0 8px 18px rgba(122,141,115,.18);
}

.timeline-step:hover .timeline-number {
    transform: translateY(-4px);
}

.timeline-step h3 {
    font-size: 24px;
    color: #384638;
    margin: 0 0 14px;
}

.timeline-step p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 200px;
    margin: 0 auto;
}


/* =========================================================
   11. PROFILS
   ========================================================= */
.profiles-section {
    padding: 100px 0;
    background: #fff;
}

.profiles-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}

.profiles-label {
    display: block;
    text-align: center;
    color: #7A8D73;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.profiles-container h2 {
    text-align: center;
    font-size: 48px;
    color: #2F2F2F;
    margin: 0 0 22px;
}

.profiles-intro {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

.profiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.profiles-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.profile-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: .30s;
}

.profile-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    border: 2px solid #D8DED2;
    background: #FBFAF8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #7A8D73;
}

.profile-content {
    flex: 1;
}

.profile-content h3 {
    margin: 4px 0 10px;
    font-size: 23px;
    color: #384638;
}

.profile-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.profile-item:hover {
    transform: translateX(6px);
}

.profile-item:hover .profile-icon {
    background: #7A8D73;
    color: #fff;
    border-color: #7A8D73;
}


/* =========================================================
   12. AVIS / REVIEWS — LEGACY
   ========================================================= */
.avis-anne {
    background: #f8f6f1;
    padding: 85px 20px;
}

.avis-container {
    max-width: 1250px;
    width: 92%;
    margin: 0 auto;
}

.avis-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

.avis-label {
    display: block;
    color: #7b8668;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.avis-heading h2 {
    margin: 0 0 16px;
    color: #35402f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 39px;
    font-weight: 400;
    line-height: 1.2;
}

.avis-heading p {
    margin: 0;
    color: #656860;
    font-size: 16px;
    line-height: 1.7;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.avis-card {
    background: #fff;
    padding: 32px 30px 28px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(50,55,40,.06);
    display: flex;
    flex-direction: column;
}

.avis-stars {
    color: #7b8668;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.avis-card blockquote {
    margin: 0;
    color: #50564d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.7;
    flex-grow: 1;
}

.avis-author {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #e6e4dc;
}

.avis-author strong {
    color: #3e4938;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.avis-author span {
    margin-top: 4px;
    color: #888b83;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.avis-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    color: #7b8668;
}

.avis-google span {
    font-size: 14px;
    letter-spacing: 2px;
}

.avis-google p {
    margin: 0;
    color: #777b73;
    font-size: 12px;
}


/* =========================================================
   13. COMMENT SE DÉROULE UNE SÉANCE ?
   ========================================================= */
.seance-section {
    background: #fff;
    padding: 90px 20px;
}

.seance-container {
    max-width: 1150px;
    width: 92%;
    margin: 0 auto;
}

.seance-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.seance-label {
    display: block;
    color: #7b8668;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 13px;
}

.seance-heading h2 {
    margin: 0 0 17px;
    color: #35402f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.seance-heading > p {
    margin: 0;
    color: #656860;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.seance-steps {
    max-width: 950px;
    margin: 0 auto;
}

.seance-step {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 25px;
    position: relative;
    padding-bottom: 38px;
}

.seance-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 52px;
    bottom: 0;
    width: 1px;
    background: #d9ddd0;
}

.seance-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: #f3f0e8;
    border: 1px solid #cdd3c1;
    border-radius: 50%;
    color: #6f7d60;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.seance-step-content {
    padding-top: 4px;
}

.seance-step-content h3 {
    margin: 0 0 8px;
    color: #3e4938;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.seance-step-content p {
    max-width: 720px;
    margin: 0;
    color: #5d615a;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   14. CE QUI GUIDE MA PRATIQUE
   ========================================================= */
.guide-pratique-container {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 20px 40px 0;
}

.guide-pratique-heading {
    max-width: 800px;
    margin-bottom: 65px;
}

.guide-pratique-label {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7a8d73;
}

.guide-pratique-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -1px;
    color: #30372f;
}

.guide-pratique-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
    align-items: start;
}

.guide-pratique-text {
    max-width: 620px;
}

.guide-pratique-text p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #5e645d;
}

.guide-pratique-text .guide-pratique-intro {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    color: #30372f;
}

.guide-pratique-side {
    position: relative;
}

.guide-pratique-quote {
    position: relative;
    padding: 45px 45px 40px;
    background: #f5f3ee;
}

.guide-pratique-mark {
    display: block;
    height: 35px;
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 0.8;
    color: #7a8d73;
}

.guide-pratique-quote p {
    margin: 15px 0 25px;
    font-size: 23px;
    line-height: 1.5;
    font-weight: 400;
    color: #30372f;
}

.guide-pratique-signature {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a8d73;
}

.guide-pratique-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
}

.guide-value {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(122, 141, 115, 0.20);
}

.guide-value:nth-child(odd) {
    border-right: 1px solid rgba(122, 141, 115, 0.20);
    padding-left: 0;
}

.guide-value:nth-child(even) {
    padding-left: 25px;
}

.guide-value span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a8d73;
}

.guide-value strong {
    font-size: 15px;
    font-weight: 500;
    color: #30372f;
}


/* =========================================================
   15. MON PARCOURS + FORMATIONS
   ========================================================= */
.parcours-container {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

.parcours-intro {
    max-width: 780px;
    margin-bottom: 75px;
}

.parcours-label {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7a8d73;
}

.parcours-intro h2 {
    margin: 0 0 25px;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -1px;
    color: #30372f;
}

.parcours-intro > p {
    max-width: 650px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #626860;
}

.parcours-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: start;
    margin-bottom: 90px;
}

.parcours-text {
    max-width: 620px;
}

.parcours-text p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #5e645d;
}

.parcours-text strong {
    font-weight: 600;
    color: #30372f;
}

.parcours-highlight {
    padding: 45px 45px 40px;
    background: #f5f3ee;
}

.parcours-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border: 1px solid rgba(122, 141, 115, 0.4);
    border-radius: 50%;
    font-size: 25px;
    font-weight: 300;
    color: #7a8d73;
}

.parcours-highlight h3 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 500;
    color: #30372f;
}

.parcours-highlight p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #626860;
}

.parcours-highlight p:last-child {
    margin-bottom: 0;
}

.formations {
    padding-top: 20px;
}

.formations-heading {
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(122, 141, 115, 0.25);
}

.formations-heading span {
    display: block;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.3px;
    color: #7a8d73;
}

.formations-heading h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    color: #30372f;
}

.formations-list {
    position: relative;
    padding: 0;
}

.formations-list::before {
    display: none;
}

.formation-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: auto;
    padding: 0 0 32px;
}

.formation-year {
    padding-top: 2px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #7a8d73;
    text-align: left;
}

.formation-line {
    display: none;
}

.formation-content {
    padding: 0 0 0 30px;
    border-left: 1px solid rgba(122, 141, 115, 0.20);
}

.formation-content h4 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
    color: #30372f;
}

.formation-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #858a83;
}

.parcours-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 65px;
    padding: 25px 0;
    border-top: 1px solid rgba(122, 141, 115, 0.25);
    border-bottom: 1px solid rgba(122, 141, 115, 0.25);
}

.parcours-bottom span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #7a8d73;
}


/* =========================================================
   16. FINAL — ANNE / RENDEZ-VOUS
   ========================================================= */
.anne-final-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f5f3ee;
    overflow: hidden;
}

.anne-final-image {
    min-height: 600px;
}

.anne-final-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
}

.anne-final-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 85px;
}

.anne-final-label {
    display: block;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7a8d73;
}

.anne-final-content h2 {
    margin: 0 0 28px;
    font-size: clamp(36px, 3.5vw, 52px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -1px;
    color: #30372f;
}

.anne-final-intro {
    max-width: 560px;
    margin: 0 0 20px;
    font-size: 19px;
    line-height: 1.65;
    color: #454b45;
}

.anne-final-content > p:not(.anne-final-intro) {
    max-width: 530px;
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.75;
    color: #626860;
}

.anne-final-button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 16px 25px;
    background: #7a8d73;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease;
}

.anne-final-button:hover {
    background: #687b62;
}


/* =========================================================
   CALENDLY — COMPATIBILITEIT WORDPRESS / MOBILE / WEBVIEW
   ========================================================= */

.calendly-inline-widget {
    width: 100% !important;
    min-width: 320px !important;
    height: 700px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.calendly-inline-widget iframe {
    width: 100% !important;
    min-width: 320px !important;
    height: 700px !important;
    border: 0 !important;
    display: block !important;
}

/* Mobiel: vaste hoogte, geen vh/calc */
@media (max-width: 768px) {
    .calendly-inline-widget {
        height: 720px !important;
        min-height: 720px !important;
        max-height: none !important;
    }

    .calendly-inline-widget iframe {
        height: 720px !important;
    }
}


/* =========================================================
   18. PAGE-ID-2344 (Mon Approche) FULL WIDTH
   ========================================================= */
.page-id-2344 .site-content,
.page-id-2344 .content-area,
.page-id-2344 .entry-content,
.page-id-2344 .entry-content > *,
.page-id-2344 .wp-block-group,
.page-id-2344 .wp-block-group__inner-container {
    max-width: none !important;
    width: 100% !important;
}

.page-id-2344 .site-content,
.page-id-2344 .content-area {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.page-id-2344 .approche-hero-container,
.page-id-2344 .vision-grid,
.page-id-2344 .vision-strip,
.page-id-2344 .reviews-anne-container,
.page-id-2344 .guide-pratique-container,
.page-id-2344 .parcours-container,
.page-id-2344 .anne-final-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   19. RESPONSIVE
   ========================================================= */

/* 1100px */
@media (max-width: 1100px) {
    .infos-grid {
        grid-template-columns: repeat(3, minmax(180px, 220px));
    }
    .anne-hero-wrapper {
        grid-template-columns: 1fr;
    }
    .anne-hero-content {
        padding: 60px 35px;
    }
    .anne-hero h1 {
        font-size: 52px;
    }
    .anne-hero-image {
        height: 500px;
    }
}

/* 1000px */
@media (max-width: 1000px) {
    .consultation-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 0;
    }
    .consultation-timeline::before {
        display: none;
    }
    .consultation-step:nth-child(2) {
        border-right: none;
    }
    .vision-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 0;
        margin-bottom: 80px;
        padding: 40px 20px;
    }
    .vision-feature:nth-child(2)::after {
        display: none;
    }
    .vision-feature:nth-child(-n+2) {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(122, 141, 115, 0.20);
    }
}

/* 991px */
@media (max-width: 991px) {
    .approche-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 0;
    }
    .approche-item:nth-child(2) {
        border-right: none;
    }
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .timeline-line {
        display: none;
    }
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .avis-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }
}

/* 950px */
@media (max-width: 950px) {
    .reviews-anne-container {
        padding: 65px 30px;
    }
    .reviews-anne-grid {
        gap: 20px;
    }
    .review-anne-card {
        padding: 28px 24px;
    }
}

/* 900px */
@media (max-width: 900px) {
    .approche-hero-container {
        grid-template-columns: 1fr 0.9fr;
        min-height: 560px;
    }
    .approche-hero-content {
        padding: 60px 45px;
    }
    .approche-hero-content h1 {
        font-size: 44px;
    }
    .approche-hero-image,
    .approche-hero-image img {
        min-height: 560px;
    }
    .vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
        padding: 0 25px;
    }
    .vision-photo img {
        height: 500px;
    }
    .vision-text h2 {
        font-size: 36px;
    }
    .guide-pratique-container {
        padding: 20px 30px 0;
    }
    .guide-pratique-grid {
        gap: 55px;
    }
    .guide-pratique-heading {
        margin-bottom: 50px;
    }
    .guide-pratique-heading h2 {
        font-size: 42px;
    }
    .guide-pratique-quote {
        padding: 35px 30px;
    }
    .guide-pratique-quote p {
        font-size: 20px;
    }
    .parcours-container {
        padding: 0 30px;
    }
    .parcours-content {
        gap: 50px;
    }
    .parcours-highlight {
        padding: 35px 30px;
    }
    .anne-final-content {
        padding: 60px 45px;
    }
    .anne-final-image,
    .anne-final-image img {
        min-height: 520px;
    }
}

/* 850px */
@media (max-width: 850px) {
    .approche-listes {
        grid-template-columns: 1fr;
    }
    .approche-colonne {
        padding: 30px 25px;
    }
    .approche-intro h2 {
        font-size: 32px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .floating-rdv {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 17px;
        font-size: 17px;
        border-radius: 18px;
    }

    .approche-section,
    .infos-section,
    .consultation-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .approche-section {
        margin: 70px auto;
    }

    .approche-header h2,
    .infos-header h2 {
        font-size: 34px;
    }

    .approche-grid {
        grid-template-columns: 1fr;
    }

    .approche-item {
        padding: 0;
        margin-bottom: 45px;
        border: none !important;
    }

    .infos-grid {
        grid-template-columns: minmax(260px, 380px);
        justify-content: center;
    }

    .consultation-section {
        margin: 80px auto;
    }

    .consultation-header h2 {
        font-size: 34px;
    }

    .anne-hero h1 {
        font-size: 42px;
    }

    .anne-hero p {
        font-size: 17px;
    }

    .anne-hero-content {
        padding: 45px 25px;
    }

    .anne-hero-image {
        height: 360px;
    }

    .anne-hero-image img {
        border-radius: 0;
    }

    .timeline-container h2 {
        font-size: 36px;
    }

    .profiles-container h2 {
        font-size: 36px;
    }

    .profile-item {
        gap: 18px;
    }

    .profile-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 22px;
    }

    .profile-content h3 {
        font-size: 21px;
    }

    .seance-section {
        padding: 70px 18px;
    }

    .seance-heading h2 {
        font-size: 32px;
    }

    .anne-final-button {
        width: 100%;
        box-sizing: border-box;
    }

    /* Cover block fix (contact page) */
    .page-id-8 .wp-block-cover {
        min-height: 380px !important;
        height: auto !important;
    }

    .page-id-8 .wp-block-cover__inner-container {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

/* 700px */
@media (max-width: 700px) {
    .approche-hero-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
    }

    .approche-hero-content {
        padding: 55px 28px 50px;
    }

    .approche-hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .approche-hero-intro {
        font-size: 18px;
    }

    .approche-hero-image {
        min-height: 420px;
    }

    .approche-hero-image img {
        min-height: 420px;
        max-height: 480px;
    }

    .approche-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .approche-hero-buttons .approche-hero-button {
        text-align: center;
        justify-content: center;
    }

    .vision-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 25px;
        margin-bottom: 55px;
    }

    .vision-photo img {
        height: 400px;
    }

    .vision-text {
        max-width: none;
    }

    .vision-text h2 {
        font-size: 34px;
    }

    .vision-strip {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0 25px 70px;
        padding: 10px 0;
    }

    .vision-feature {
        padding: 25px 10px;
    }

    .vision-feature:not(:last-child)::after {
        display: none;
    }

    .vision-feature:not(:last-child) {
        border-bottom: 1px solid rgba(122, 141, 115, 0.18);
    }

    .vision-circle {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
    }

    .reviews-anne-container {
        margin: 0 0 80px;
        padding: 60px 25px 55px;
    }

    .reviews-anne-heading {
        margin-bottom: 40px;
    }

    .reviews-anne-heading h2 {
        font-size: 34px;
    }

    .reviews-anne-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-anne-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .guide-pratique-container {
        margin-bottom: 80px;
        padding: 0 25px;
    }

    .guide-pratique-heading {
        margin-bottom: 40px;
    }

    .guide-pratique-heading h2 {
        font-size: 36px;
        line-height: 1.15;
    }

    .guide-pratique-grid {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .guide-pratique-text .guide-pratique-intro {
        font-size: 19px;
    }

    .guide-pratique-quote {
        padding: 35px 28px;
    }

    .guide-pratique-quote p {
        font-size: 21px;
    }

    .guide-pratique-values {
        margin-top: 35px;
    }

    .guide-value:nth-child(even) {
        padding-left: 15px;
    }

    .parcours-container {
        margin-bottom: 80px;
        padding: 0 25px;
    }

    .parcours-intro {
        margin-bottom: 50px;
    }

    .parcours-intro h2 {
        font-size: 36px;
    }

    .parcours-intro > p {
        font-size: 17px;
    }

    .parcours-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 65px;
    }

    .parcours-highlight {
        padding: 35px 28px;
    }

    .formations-heading h3 {
        font-size: 26px;
    }

    .formation-item {
        grid-template-columns: 75px 1fr;
        padding-bottom: 28px;
    }

    .formation-year {
        font-size: 11px;
    }

    .formation-content {
        padding-left: 20px;
    }

    .formation-content h4 {
        font-size: 15px;
    }

    .parcours-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }

    .anne-final-container {
        display: flex;
        flex-direction: column;
    }

    .anne-final-image {
        min-height: 420px;
    }

    .anne-final-image img {
        min-height: 420px;
        max-height: 500px;
    }

    .anne-final-content {
        padding: 55px 28px 60px;
    }

    .anne-final-content h2 {
        font-size: 36px;
    }

    .anne-final-intro {
        font-size: 18px;
    }
}

/* 640px */
@media (max-width: 640px) {
    .approche-correspond {
        padding: 70px 20px;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .timeline-step p {
        max-width: 100%;
    }

    .seance-step {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding-bottom: 32px;
    }

    .seance-number {
        width: 46px;
        height: 46px;
        font-size: 11px;
    }

    .seance-step:not(:last-child)::before {
        left: 22px;
        top: 47px;
    }

    .seance-step-content h3 {
        font-size: 16px;
    }

    .seance-step-content p {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* 600px */
@media (max-width: 600px) {
    .approche-hero {
        padding: 45px 15px 55px;
    }

    .approche-hero-container {
        width: 100%;
    }
}