
    /* âââââââââââââââââââââââââââââââââââââââââ
       TOKENS
    âââââââââââââââââââââââââââââââââââââââââ */
    :root {
      --cream:      #FAF7F0;
      --cream-dark: #F2EDE3;
      --green-900:  #0D2B1E;
      --green-800:  #1B4D3E;
      --green-700:  #246B54;
      --green-600:  #2E8B6E;
      --green-100:  #E0F0E8;
      --green-50:   #F0F8F4;
      --gold:       #C9A84C;
      --gold-light: #F0DFA0;
      --gold-pale:  #FDF8EC;
      --navy:       #0F1B2D;
      --white:      #FFFFFF;
      --gray-800:   #1F2937;
      --gray-600:   #4B5563;
      --gray-400:   #9CA3AF;
      --gray-200:   #E5E7EB;
      --gray-100:   #F3F4F6;
      --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px;
      --sh-sm: 0 1px 4px rgba(0,0,0,.07);
      --sh-md: 0 4px 24px rgba(0,0,0,.10);
      --sh-lg: 0 12px 48px rgba(0,0,0,.14);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Inter', system-ui, sans-serif; color: var(--gray-800); background: var(--cream); line-height: 1.65; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; }

    /* âââ LAYOUT âââ */
    .wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
    .wrap--narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }
    .section { padding: 96px 0; }
    .section--sm { padding: 64px 0; }
    .section--cream { background: var(--cream); }
    .section--white { background: var(--white); }
    .section--dark { background: var(--green-900); color: var(--white); }
    .section--navy { background: var(--navy); color: var(--white); }

    /* âââ TYPOGRAPHY âââ */
    .eyebrow { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); margin-bottom: 14px; }
    .eyebrow--gold { color: var(--gold); }
    .eyebrow--white { color: rgba(255,255,255,.55); }
    h1, .h1 { font-family: 'DM Sans', 'Inter', sans-serif; font-size: clamp(36px,5.5vw,64px); font-weight: 900; line-height: 1.08; color: var(--green-900); }
    h2, .h2 { font-family: 'Inter', sans-serif; font-size: clamp(24px,3.5vw,38px); font-weight: 900; line-height: 1.15; text-transform: uppercase; letter-spacing: -.01em; color: var(--green-900); }
    h3, .h3 { font-size: 20px; font-weight: 800; color: var(--green-900); }
    .lead { font-size: 18px; color: var(--gray-600); line-height: 1.7; max-width: 680px; }
    .lead--white { color: rgba(255,255,255,.8); }
    .text-center { text-align: center; }
    .text-center .lead { margin: 0 auto; }
    strong { font-weight: 700; }
    em.highlight { font-style: normal; color: var(--gold); }

    /* âââ BUTTONS âââ */
    .btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 15px 28px; border-radius: var(--r-sm); transition: all .18s; letter-spacing: .01em; }
    .btn-primary { background: var(--green-800); color: var(--white); }
    .btn-primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,77,62,.35); }
    .btn-gold { background: var(--gold); color: var(--green-900); }
    .btn-gold:hover { background: #D4B05A; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
    .btn-outline { background: transparent; color: var(--green-900); border: 2px solid var(--green-900); }
    .btn-outline:hover { background: var(--green-900); color: var(--white); }
    .btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
    .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
    .btn-lg { font-size: 17px; padding: 18px 36px; }
    .btn svg { width: 18px; height: 18px; }

    /* âââ TOPBAR âââ */
    .topbar { background: var(--green-900); padding: 9px 0; text-align: center; }
    .topbar-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.8); }
    .topbar-item { display: flex; align-items: center; gap: 7px; }
    .topbar-item svg { width: 14px; height: 14px; fill: var(--gold); }
    .topbar-item strong { color: var(--gold-light); }

    /* âââ NAV âââ */
    .nav { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--gray-200); box-shadow: 0 1px 8px rgba(0,0,0,.06); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo-icon { width: 36px; height: 36px; background: var(--green-900); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
    .nav-logo-icon svg { width: 20px; height: 20px; fill: var(--white); }
    .nav-brand { font-size: 15px; font-weight: 800; color: var(--green-900); line-height: 1; }
    .nav-brand span { display: block; font-size: 11px; font-weight: 500; color: var(--gray-400); letter-spacing: .03em; margin-top: 2px; }
    .nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; color: var(--gray-600); }
    .nav-links a:hover { color: var(--green-700); }
    .nav-right { display: flex; align-items: center; gap: 14px; }
    .nav-phone { font-size: 14px; font-weight: 600; color: var(--green-800); display: flex; align-items: center; gap: 6px; }
    .nav-phone svg { width: 15px; height: 15px; fill: var(--green-700); }
    .nav-cta { background: var(--gold); color: var(--green-900); font-weight: 800; font-size: 13px; padding: 9px 20px; border-radius: var(--r-sm); letter-spacing: .03em; text-transform: uppercase; }
    .nav-cta:hover { background: #D4B05A; }

    /* âââ HERO âââ */
    .hero { background: var(--cream); padding: 70px 0 0; overflow: hidden; position: relative; }
    .hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%); pointer-events: none; }
    .hero-label { display: inline-flex; align-items: center; gap: 8px; background: var(--green-100); border: 1px solid rgba(27,77,62,.2); border-radius: 40px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--green-800); margin-bottom: 22px; }
    .hero-label svg { width: 14px; height: 14px; fill: var(--green-700); }
    .hero h1 { margin-bottom: 18px; }
    .hero h1 .accent { color: var(--green-700); font-style: italic; }
    .hero-sub { font-size: 19px; color: var(--gray-600); line-height: 1.65; margin-bottom: 32px; max-width: 560px; }
    .hero-sub .bold-gold { font-weight: 800; color: var(--green-800); }
    .hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
    .hero-pill { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--gray-700); background: var(--white); border: 1px solid var(--gray-200); border-radius: 40px; padding: 6px 14px; }
    .hero-pill svg { width: 14px; height: 14px; fill: var(--green-600); }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
    .hero-social-proof { display: flex; align-items: center; gap: 14px; }
    .hero-avatars { display: flex; }
    .hero-avatars span { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white); background: var(--green-100); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--green-800); margin-left: -8px; }
    .hero-avatars span:first-child { margin-left: 0; }
    .hero-sp-text { font-size: 13px; color: var(--gray-600); line-height: 1.45; }
    .hero-sp-text strong { color: var(--green-900); display: block; }
    .hero-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
    .hero-right { position: relative; }

    /* âââ STICKY FORM CARD âââ */
    .form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 32px 28px; position: sticky; top: 80px; }
    .form-card-badge { display: inline-flex; align-items: center; gap: 7px; background: #E8F5E9; color: #2E7D32; font-size: 12px; font-weight: 700; border-radius: 6px; padding: 5px 12px; margin-bottom: 18px; }
    .form-card-badge svg { width: 14px; height: 14px; fill: #2E7D32; }
    .form-card h3 { font-size: 18px; font-weight: 800; color: var(--green-900); margin-bottom: 6px; }
    .form-card-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 22px; line-height: 1.5; }
    .form-slots { display: flex; align-items: center; gap: 8px; background: var(--gold-pale); border: 1px solid rgba(201,168,76,.3); border-radius: var(--r-sm); padding: 10px 14px; margin-bottom: 20px; font-size: 13px; color: var(--green-900); font-weight: 600; }
    .form-slots svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
    .form-field { margin-bottom: 14px; }
    .form-field input, .form-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); font-size: 14px; font-family: inherit; color: var(--gray-800); background: var(--white); outline: none; transition: border-color .15s; }
    .form-field input:focus, .form-field select:focus { border-color: var(--green-700); }
    .form-field input::placeholder { color: var(--gray-400); }
    .form-submit { width: 100%; background: var(--green-900); color: var(--white); font-weight: 800; font-size: 15px; padding: 15px; border-radius: var(--r-sm); letter-spacing: .02em; transition: all .18s; text-transform: uppercase; border: none; cursor: pointer; }
    .form-submit:hover { background: var(--green-700); transform: translateY(-1px); }
    .form-gdpr { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 12px; line-height: 1.5; }
    .form-success { display: none; text-align: center; padding: 20px; }
    .form-success svg { width: 48px; height: 48px; fill: var(--green-600); margin: 0 auto 12px; }
    .form-success h4 { font-size: 16px; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
    .form-success p { font-size: 13px; color: var(--gray-600); }

    /* âââ TRUST STRIP âââ */
    .trust { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 22px 0; }
    .trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--gray-600); }
    .trust-logo { height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gray-100); border-radius: 8px; padding: 6px 14px; font-size: 12px; font-weight: 800; color: var(--gray-700); letter-spacing: .05em; }
    .trust-logo--green { background: var(--green-100); color: var(--green-800); }
    .trust-logo--gold { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
    .trust-div { width: 1px; height: 32px; background: var(--gray-200); }

    /* âââ STORY (SALES COPY) âââ */
    .story { background: var(--cream); }
    .story-text { font-size: 17px; color: var(--gray-700); line-height: 1.85; }
    .story-text p { margin-bottom: 22px; }
    .story-text p:last-child { margin-bottom: 0; }
    .story-text .pain { font-style: italic; color: var(--gray-500); }
    .story-text .pivot { font-weight: 800; font-size: 20px; color: var(--green-900); }
    .story-highlight { background: var(--green-100); border-left: 4px solid var(--green-700); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 20px 24px; margin: 28px 0; font-size: 16px; font-weight: 600; color: var(--green-900); line-height: 1.65; }

    /* âââ WHAT YOU'LL GET âââ */
    .gets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
    .get-card { display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-md); padding: 22px 20px; }
    .get-icon { width: 40px; height: 40px; background: var(--green-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .get-icon svg { width: 20px; height: 20px; fill: var(--green-700); }
    .get-content h4 { font-size: 14px; font-weight: 700; color: var(--green-900); margin-bottom: 4px; }
    .get-content p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

    /* âââ PROGRAMME âââ */
    .modules { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
    .mod { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-md); overflow: hidden; }
    .mod-head { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; transition: background .15s; }
    .mod-head:hover { background: var(--green-50); }
    .mod-num { min-width: 36px; height: 36px; background: var(--green-900); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: var(--white); }
    .mod-title { flex: 1; font-size: 15px; font-weight: 700; color: var(--green-900); }
    .mod-duration { font-size: 12px; color: var(--gray-400); font-weight: 500; white-space: nowrap; }
    .mod-arrow { width: 20px; height: 20px; fill: var(--gray-400); transition: transform .22s; flex-shrink: 0; }
    .mod-head[aria-expanded="true"] .mod-arrow { transform: rotate(180deg); }
    .mod-body { display: none; padding: 0 24px 22px 76px; }
    .mod-body.open { display: block; }
    .mod-body ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .mod-body li { font-size: 14px; color: var(--gray-600); display: flex; gap: 10px; line-height: 1.5; }
    .mod-body li::before { content: 'â'; color: var(--green-600); font-weight: 800; flex-shrink: 0; }

    /* âââ MÃTHODE âââ */
    .methode-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
    .methode-step { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 32px 26px; position: relative; }
    .methode-step-num { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: var(--green-100); line-height: 1; position: absolute; top: 16px; right: 20px; }
    .methode-step h3 { font-size: 16px; font-weight: 800; color: var(--green-900); margin-bottom: 10px; position: relative; z-index: 1; }
    .methode-step p { font-size: 14px; color: var(--gray-600); line-height: 1.65; position: relative; z-index: 1; }

    /* âââ FORMATEUR âââ */
    .formateur { background: var(--cream-dark); }
    .formateur-layout { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
    .formateur-photo { border-radius: var(--r-xl); overflow: hidden; background: var(--green-100); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; }
    .formateur-photo-placeholder { text-align: center; color: var(--green-700); font-size: 13px; padding: 20px; }
    .formateur-photo-placeholder svg { width: 72px; height: 72px; fill: var(--green-200); opacity: .4; margin: 0 auto 12px; }
    .formateur-name { font-family: 'DM Sans', 'Inter', sans-serif; font-size: 36px; font-weight: 900; color: var(--green-900); margin-bottom: 6px; }
    .formateur-role { font-size: 16px; font-weight: 600; color: var(--green-700); margin-bottom: 18px; }
    .formateur-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
    .formateur-tag { background: var(--green-100); color: var(--green-800); font-size: 12px; font-weight: 600; border-radius: 6px; padding: 5px 12px; }
    .formateur-bio { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
    .formateur-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
    .formateur-kpi { background: var(--white); border-radius: var(--r-md); padding: 18px 14px; text-align: center; }
    .formateur-kpi .n { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--green-800); }
    .formateur-kpi .l { font-size: 12px; color: var(--gray-500); margin-top: 3px; }

    /* âââ TESTIMONIALS âââ */
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
    .testi { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: 28px 26px; }
    .testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-quote { font-size: 15px; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-av { width: 44px; height: 44px; background: var(--green-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--green-800); flex-shrink: 0; }
    .testi-name { font-size: 14px; font-weight: 700; color: var(--green-900); }
    .testi-role { font-size: 12px; color: var(--gray-400); }

    /* âââ FINANCEMENT âââ */
    .fin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
    .fin-card { border-radius: var(--r-lg); padding: 32px 26px; }
    .fin-card--featured { background: var(--green-900); }
    .fin-card--opco { background: var(--white); border: 1px solid var(--gray-200); }
    .fin-card--auto { background: var(--gold-pale); border: 1px solid rgba(201,168,76,.3); }
    .fin-logo { font-size: 28px; font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px; }
    .fin-card--featured .fin-logo { color: var(--gold-light); }
    .fin-card--opco .fin-logo { color: var(--green-900); }
    .fin-card--auto .fin-logo { color: var(--green-800); }
    .fin-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
    .fin-card--featured h3 { color: var(--white); }
    .fin-card--opco h3, .fin-card--auto h3 { color: var(--green-900); }
    .fin-card p { font-size: 13px; line-height: 1.65; }
    .fin-card--featured p { color: rgba(255,255,255,.72); }
    .fin-card--opco p, .fin-card--auto p { color: var(--gray-600); }
    .fin-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; text-decoration: underline; }
    .fin-card--featured .fin-link { color: var(--gold-light); }
    .fin-card--opco .fin-link, .fin-card--auto .fin-link { color: var(--green-700); }

    /* âââ KPIs rÃ©sultats âââ */
    .kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r-md); overflow: hidden; margin-top: 44px; }
    .kpi-cell { background: rgba(255,255,255,.04); padding: 32px 20px; text-align: center; }
    .kpi-n { font-family: 'Playfair Display', serif; font-size: 50px; font-weight: 900; color: var(--gold-light); line-height: 1; }
    .kpi-l { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.4; }

    /* âââ LEGAL âââ */
    .legal-box { background: var(--gray-100); border-radius: var(--r-md); padding: 28px 32px; margin-top: 40px; }
    .legal-box h3 { font-size: 14px; font-weight: 800; color: var(--gray-700); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .07em; }
    .legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .legal-item label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); display: block; margin-bottom: 3px; }
    .legal-item span { font-size: 14px; color: var(--gray-700); font-weight: 500; }

    /* âââ ACCESSIBILITÃ âââ */
    .access-card { display: flex; align-items: flex-start; gap: 20px; background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--r-md); padding: 28px; margin-top: 40px; }
    .access-icon { width: 48px; height: 48px; background: var(--green-800); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .access-icon svg { width: 26px; height: 26px; fill: var(--white); }
    .access-text h4 { font-size: 15px; font-weight: 700; color: var(--green-900); margin-bottom: 7px; }
    .access-text p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
    .access-text a { color: var(--green-700); font-weight: 600; text-decoration: underline; }

    /* âââ PROCESS âââ */
    .process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 48px; }
    .process-row::before { content: ''; position: absolute; top: 24px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 2px; background: var(--gray-200); z-index: 0; }
    .process-item { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
    .process-circle { width: 48px; height: 48px; background: var(--green-900); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 16px; font-weight: 900; color: var(--white); border: 4px solid var(--cream); box-shadow: 0 0 0 2px var(--green-100); }
    .process-item h4 { font-size: 14px; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
    .process-item p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

    /* âââ CTA FINAL âââ */
    .cta-final { background: linear-gradient(150deg, var(--green-900) 0%, #1a3d2e 100%); padding: 96px 0; text-align: center; }
    .cta-final h2 { color: var(--white); margin-bottom: 18px; }
    .cta-final .lead { margin: 0 auto 44px; }
    .cta-form { max-width: 520px; margin: 0 auto; }
    .cta-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
    .cta-field input, .cta-field select { width: 100%; padding: 14px 16px; border: none; border-radius: var(--r-sm); font-size: 14px; font-family: inherit; background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.18); outline: none; }
    .cta-field input::placeholder { color: rgba(255,255,255,.45); }
    .cta-field input:focus, .cta-field select:focus { border-color: rgba(201,168,76,.6); background: rgba(255,255,255,.13); }
    .cta-field select option { color: var(--gray-800); background: var(--white); }
    .cta-submit { width: 100%; background: var(--gold); color: var(--green-900); font-weight: 900; font-size: 16px; padding: 17px; border-radius: var(--r-sm); text-transform: uppercase; letter-spacing: .04em; margin-top: 12px; border: none; cursor: pointer; transition: all .18s; }
    .cta-submit:hover { background: #D4B05A; transform: translateY(-1px); }

    /* âââ FOOTER âââ */
    .footer { background: var(--green-900); padding: 48px 0 32px; color: rgba(255,255,255,.6); font-size: 13px; }
    .footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-brand { font-size: 15px; font-weight: 800; color: var(--white); display: block; margin-bottom: 8px; }
    .footer-desc { line-height: 1.65; margin-bottom: 14px; }
    .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col li a { color: rgba(255,255,255,.65); }
    .footer-col li a:hover { color: var(--white); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-legal { font-size: 12px; }

    /* âââ RESPONSIVE âââ */
    @media (max-width: 1000px) {
      .hero-layout { grid-template-columns: 1fr; }
      .form-card { position: static; }
      .formateur-layout { grid-template-columns: 1fr; }
      .formateur-photo { max-height: 320px; aspect-ratio: auto; }
      .kpi-row { grid-template-columns: repeat(2,1fr); }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
    }
    @media (max-width: 780px) {
      .gets-grid, .methode-steps, .testi-grid, .fin-grid, .process-row { grid-template-columns: 1fr; }
      .process-row::before { display: none; }
      .nav-links, .nav-phone { display: none; }
      .cta-field-row { grid-template-columns: 1fr; }
      .legal-grid { grid-template-columns: 1fr 1fr; }
      .kpi-row { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .trust-inner { gap: 14px; }
      .trust-div { display: none; }
      .legal-grid, .formateur-kpis { grid-template-columns: 1fr; }
    }

    /* âââ ANIMATIONS âââ */
    .mod-body { animation: fadeSlide .2s ease; }
    @keyframes fadeSlide { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
  
/* MT static-copy fixes — 2026-07-17 */
/* Débordement horizontal résiduel (constaté ~880px : suffixe compteur "+45Rdv") */
html, body { overflow-x: clip; }
@media (max-width: 1024px){
  .elementor-counter .elementor-counter-number-wrapper{ flex-wrap: wrap; justify-content: center; }
  .elementor-counter-number-suffix{ min-width: 0; }
}

/* MT: fix contraste WCAG bouton header sticky "En savoir plus" (Head of Design 2026-07-21 :
   veto bloquant, #D77A3A/blanc mesure 3.12:1, sous le seuil AA 4.5:1, present sitewide).
   Reutilise le rouille #B4571C deja en usage ailleurs (CTA articles) -> corrige le contraste
   (4.86:1) SANS ajouter une 24e teinte a la palette (autre defaut releve par le meme audit). */
.elementor-element-1c9d27fc .elementor-button,
.elementor-element-1c9d27fc .elementor-button:hover,
.elementor-element-1c9d27fc .elementor-button:focus{
  background-color:#B4571C !important;
  border-color:#B4571C !important;
  color:#fff !important;
}

/* MT: byline couleur marque (remplace le bleu lien par defaut) */
.entry-meta a, .entry-meta a:link, .entry-meta a:visited { color:#1a4332; }
.entry-meta a:hover, .entry-meta a:focus { color:#B78A53; }
.entry-meta, .entry-meta span, .entry-meta .author-name, .entry-meta .posted-on, .entry-meta .published { color:#1a4332 !important; }
.entry-meta a:hover, .entry-meta a:focus { color:#B78A53 !important; }

/* ================= MT: habillage des articles de blog (template WP natif, 592 pages) =================
   Ces pages n'utilisent pas Elementor -> zero charte appliquee par defaut (police systeme, aucun accent
   vert/or, formulaire de commentaire brut). On applique ici la meme charte que le reste du site
   (vert-foret #1a4332, or #B78A53, serif Fraunces pour les titres) sans toucher au contenu, juste au style. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;1,9..144,500&family=Jost:wght@400;500;600&display=swap');

/* la largeur de colonne (630px) est calculee par le systeme de layout Astra (variable CSS) et non
   surchargeable simplement -> on aligne nos propres boites (nav, commentaire) dessus plutot que
   l'inverse, pour un alignement pixel-parfait sans combattre le moteur de mise en page du theme. */

/* Titre principal */
.single-post .entry-title{
  font-family:'Fraunces', Georgia, serif !important;
  font-weight: 600 !important;
  font-size: clamp(1.9rem, 4vw, 2.9rem) !important;
  line-height: 1.15 !important;
  color: #12281e !important;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.single-post .entry-meta{ font-family:'Jost', sans-serif; font-size: .92rem; margin-bottom: 8px; }

/* Titres de section dans le corps de l'article */
.single-post .entry-content h2{
  font-family:'Fraunces', Georgia, serif !important;
  font-weight: 600 !important;
  color: #1a4332 !important;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem) !important;
  line-height: 1.25;
  margin-top: 2.2em !important;
  margin-bottom: .5em !important;
  padding-top: .5em;
  border-top: 1px solid rgba(26,67,50,.14);
}
.single-post .entry-content h2:first-of-type{ border-top: 0; padding-top: 0; margin-top: 1.2em !important; }
.single-post .entry-content h3{
  font-family:'Fraunces', Georgia, serif !important;
  font-weight: 500 !important;
  font-style: italic;
  color: #B78A53 !important;
  font-size: 1.15rem !important;
  margin-top: 1.6em !important;
}

/* Corps de texte */
.single-post .entry-content{ font-family:'Jost', sans-serif; }
.single-post .entry-content p{
  color: #2c2f28;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.single-post .entry-content strong{ color: #1a4332; }
.single-post .entry-content a:not(.mt-sig-cta a){
  color: #1a4332;
  text-decoration: underline;
  text-decoration-color: #B78A53;
  text-underline-offset: 3px;
}
.single-post .entry-content a:not(.mt-sig-cta a):hover{ color: #B78A53; }

/* Listes : puce or au lieu de la puce navigateur par defaut */
.single-post .entry-content ul{ list-style: none; padding-left: 0; margin: 1.4em 0; }
.single-post .entry-content ul li{
  position: relative;
  padding-left: 26px;
  margin-bottom: .65em;
  line-height: 1.7;
}
.single-post .entry-content ul li::before{
  content: "";
  position: absolute; left: 2px; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: #B78A53;
}

/* Citations */
.single-post .entry-content blockquote{
  border-left: 3px solid #B78A53;
  background: #F4EFE5;
  padding: 1.1em 1.4em;
  border-radius: 0 10px 10px 0;
  font-family:'Fraunces', Georgia, serif;
  font-style: italic;
  color: #1a4332;
  margin: 1.6em 0;
}

/* Formulaire de commentaire */
.single-post .comment-respond{
  background: #F4EFE5;
  border-radius: 16px;
  padding: 28px 30px !important;
  margin-top: 2.5em;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.single-post .comment-reply-title{ font-family:'Fraunces', Georgia, serif !important; color:#12281e !important; font-size: 1.3rem !important; }
.single-post .comment-form input[type="text"],
.single-post .comment-form input[type="email"],
.single-post .comment-form input[type="url"],
.single-post .comment-form textarea{
  font-family:'Jost', sans-serif;
  border: 1px solid rgba(26,67,50,.22) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  background: #fff !important;
}
.single-post .comment-form textarea{ border-radius: 12px !important; }
.single-post .comment-form input[type="submit"],
.single-post #ast-commentform input#submit{
  font-family:'Jost', sans-serif;
  background: #B4571C !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 12px 26px !important;
  font-weight: 600 !important;
  cursor: pointer;
}
.single-post .comment-form input[type="submit"]:hover{ background: #1a4332 !important; }

/* Navigation précédent / suivant */
.single-post .navigation.post-navigation{
  max-width: 630px; margin: 2.5em auto 0; padding: 0;
}
.single-post .nav-links{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.single-post .nav-links > div{
  background: #F4EFE5;
  border: 1px solid rgba(26,67,50,.14);
  border-radius: 12px;
  padding: 16px 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.single-post .nav-links > div:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px -18px rgba(18,40,30,.35); }
.single-post .nav-links a{ font-family:'Jost', sans-serif; color:#1a4332; text-decoration: none; font-weight: 500; }
.single-post .nav-links .nav-subtitle{ color: #B78A53; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; display:block; margin-bottom: 4px; }
@media(max-width: 640px){ .single-post .nav-links{ grid-template-columns: 1fr; } }

.mt-editor-dot,
.mt-editor-panel,
.mt-editor-toolbar,
.mt-editor-bar,
.mt-editor-image-modal {
  box-sizing: border-box;
  font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mt-editor-dot {
  position: fixed;
  z-index: 2147483000;
  right: 18px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(107, 142, 127, 0.38);
  border-radius: 50%;
  background: #dfceb0;
  box-shadow: 0 12px 30px rgba(45, 74, 62, 0.24);
  cursor: pointer;
}

.mt-editor-panel {
  position: fixed;
  z-index: 2147483020;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fffaf1;
  color: #2d4a3e;
  box-shadow: -28px 0 70px rgba(25, 35, 32, 0.26);
  transform: translateX(105%);
  transition: transform 240ms ease;
}

.mt-editor-panel.open {
  transform: translateX(0);
}

.mt-editor-head,
.mt-editor-foot {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(45, 74, 62, 0.14);
}

.mt-editor-foot {
  border-top: 1px solid rgba(45, 74, 62, 0.14);
  border-bottom: 0;
}

.mt-editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mt-editor-head strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.mt-editor-head small,
.mt-editor-hint {
  display: block;
  margin-top: 6px;
  color: rgba(45, 74, 62, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.mt-editor-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(45, 74, 62, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #2d4a3e;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.mt-editor-body {
  overflow: auto;
  padding: 20px;
}

.mt-editor-block {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.mt-editor-block > strong {
  color: #6b8e7f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mt-editor-field {
  display: grid;
  gap: 6px;
}

.mt-editor-field span {
  color: rgba(45, 74, 62, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.mt-editor-field input,
.mt-editor-field select,
.mt-editor-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(45, 74, 62, 0.18);
  background: #fff;
  color: #2d4a3e;
  padding: 0 12px;
  font: inherit;
}

.mt-editor-field textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.mt-editor-actions,
.mt-editor-grid {
  display: grid;
  gap: 10px;
}

.mt-editor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mt-editor-actions button,
.mt-editor-panel button:not(.mt-editor-close),
.mt-editor-bar button,
.mt-editor-image-card button {
  min-height: 42px;
  border: 1px solid rgba(45, 74, 62, 0.16);
  background: #6b8e7f;
  color: #fffaf1;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mt-editor-actions button.secondary,
.mt-editor-bar button.secondary,
.mt-editor-image-card button.secondary {
  background: transparent;
  color: #fffaf1;
}

.mt-editor-image-card button.secondary {
  background: #fffaf1;
  color: #2d4a3e !important;
  border-color: rgba(45, 74, 62, 0.24);
}

.mt-editor-image-card button.secondary:hover,
.mt-editor-image-card button.secondary:focus {
  background: rgba(107, 142, 127, 0.12);
  border-color: rgba(45, 74, 62, 0.38);
}

.mt-editor-panel .secondary {
  color: #2d4a3e !important;
}

.mt-editor-error {
  display: none;
  margin: 0;
  padding: 10px 12px;
  background: #fff0ea;
  color: #a3422e;
  font-size: 13px;
  font-weight: 700;
}

.mt-editor-error.visible {
  display: block;
}

.mt-editor-forgot {
  justify-self: start;
  min-height: auto !important;
  border: 0 !important;
  background: transparent !important;
  color: #6b8e7f !important;
  padding: 2px 0 !important;
  cursor: pointer;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.mt-editor-forgot:hover,
.mt-editor-forgot:focus {
  color: #2d4a3e !important;
}

body.mt-editor-editing [data-mt-editable] {
  outline: 1px dashed rgba(223, 206, 176, 0.86);
  outline-offset: 4px;
  cursor: text;
}

body.mt-editor-editing [data-mt-editable]:hover,
body.mt-editor-editing [data-mt-editable]:focus {
  background: rgba(223, 206, 176, 0.13);
  outline: 2px solid rgba(107, 142, 127, 0.74);
}

body.mt-editor-editing [data-mt-image-editable] {
  cursor: copy;
  outline: 1px dashed rgba(223, 206, 176, 0.86);
  outline-offset: 5px;
}

body.mt-editor-editing [data-mt-image-editable]:hover {
  filter: saturate(1.04) brightness(1.02);
  outline: 2px solid rgba(107, 142, 127, 0.76);
}

.mt-editor-toolbar {
  position: absolute;
  z-index: 2147483030;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  max-width: min(92vw, 650px);
  padding: 6px;
  background: rgba(45, 74, 62, 0.98);
  color: #fffaf1;
  box-shadow: 0 16px 40px rgba(25, 35, 32, 0.3);
}

.mt-editor-toolbar[hidden],
.mt-editor-file-input {
  display: none;
}

.mt-editor-toolbar button,
.mt-editor-toolbar label {
  display: grid;
  min-width: 36px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf1;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.mt-editor-toolbar label {
  position: relative;
  overflow: hidden;
}

.mt-editor-toolbar input[type="color"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.mt-editor-bar {
  position: fixed;
  z-index: 2147483010;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: min(1240px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(223, 206, 176, 0.44);
  background: rgba(45, 74, 62, 0.98);
  color: #fffaf1;
  box-shadow: 0 18px 50px rgba(25, 35, 32, 0.36);
}

.mt-editor-bar[hidden] {
  display: none;
}

.mt-editor-bar strong {
  flex: 0 0 auto;
  color: #dfceb0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mt-editor-bar span {
  flex: 1 1 210px;
  max-width: 260px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.mt-editor-bar em {
  flex: 0 0 auto;
  color: rgba(223, 206, 176, 0.9);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.mt-editor-bar label {
  display: grid;
  flex: 1 1 210px;
  gap: 3px;
  min-width: 190px;
  max-width: 260px;
}

.mt-editor-bar small {
  color: rgba(255, 250, 241, 0.6);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mt-editor-bar select {
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf1;
  padding: 0 9px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.mt-editor-bar select option {
  color: #2d4a3e;
}

.mt-editor-bar button {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 0 12px;
  white-space: nowrap;
}

.mt-editor-image-chip-layer {
  position: absolute;
  z-index: 2147483008;
  inset: 0 auto auto 0;
  pointer-events: none;
}

.mt-editor-image-chip {
  position: absolute;
  min-width: 78px;
  height: 36px;
  border: 1px solid rgba(223, 206, 176, 0.78);
  background: rgba(45, 74, 62, 0.96);
  color: #fffaf1;
  box-shadow: 0 12px 32px rgba(25, 35, 32, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: auto;
}

.mt-editor-image-chip::before {
  content: "+";
  margin-right: 6px;
  color: #dfceb0;
}

.mt-editor-image-modal {
  position: fixed;
  z-index: 2147483040;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(30, 42, 38, 0.62);
}

.mt-editor-image-modal[hidden] {
  display: none;
}

.mt-editor-image-card {
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #fffaf1;
  color: #2d4a3e;
  box-shadow: 0 28px 80px rgba(25, 35, 32, 0.34);
}

.mt-editor-image-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}

.mt-editor-image-card p {
  margin: 0;
  color: rgba(45, 74, 62, 0.72);
  line-height: 1.6;
}

.mt-editor-image-card label {
  display: grid;
  gap: 8px;
}

.mt-editor-image-card input {
  min-height: 46px;
  border: 1px solid rgba(45, 74, 62, 0.18);
  padding: 0 12px;
  font: inherit;
}

.mt-editor-image-card > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 640px) {
  .mt-editor-dot {
    right: 14px;
    bottom: 14px;
  }

  .mt-editor-panel {
    width: 100vw;
  }

  .mt-editor-grid {
    grid-template-columns: 1fr;
  }

  .mt-editor-bar {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 7px;
    max-height: 34vh;
    overflow: auto;
    padding: 9px;
  }

  .mt-editor-bar strong {
    grid-column: 1;
    align-self: center;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .mt-editor-bar span {
    display: none;
  }

  .mt-editor-bar em {
    grid-column: 2;
    align-self: center;
    overflow: hidden;
    font-size: 10px;
    text-align: right;
    text-overflow: ellipsis;
  }

  .mt-editor-bar label {
    grid-column: 1 / -1;
    min-width: 0;
    max-width: none;
  }

  .mt-editor-bar button {
    min-width: 0;
    min-height: 40px;
    width: 100%;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  body.mt-editor-editing {
    padding-bottom: 230px;
  }

  .mt-editor-image-card > div {
    grid-template-columns: 1fr;
  }
}

