    /* ── Variables ──────────────────────────────────────── */
    :root {
      --vert:       #1A5C2E;
      --vert-med:   #2A7040;
      --vert-clair: #D5E8D9;
      --vert-pale:  #EFF7F1;
      --rouge:      #E03020;
      --rouge-clair:#FFF0EE;
      --gris:       #F5F5F5;
      --gris-med:   #E8E8E8;
      --texte:      #1A1A1A;
      --texte-sec:  #555555;
      --blanc:      #FFFFFF;
      --ombre:      0 4px 24px rgba(27,94,42,.10);
      --ombre-lg:   0 12px 48px rgba(27,94,42,.15);
    }

    /* ── Reset & base ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--texte); background: var(--blanc); line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── Typo ───────────────────────────────────────────── */
    h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
    .section-label { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase; color: var(--vert); margin-bottom: 12px; }

    /* ── Layout ─────────────────────────────────────────── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    section { padding: 96px 0; }
    .section-dark  { background: var(--vert); color: var(--blanc); }
    .section-light { background: var(--vert-pale); }

    /* ── Boutons ─────────────────────────────────────────── */
    .btn { display: inline-block; padding: 14px 28px; border-radius: 6px; font-weight: 600;
      font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: all .2s; }
    .btn-primary   { background: var(--rouge); color: var(--blanc); border-color: var(--rouge); }
    .btn-primary:hover { background: #a82314; border-color: #a82314; transform: translateY(-1px); box-shadow: var(--ombre); }
    .btn-secondary { background: transparent; color: var(--vert); border-color: var(--vert); }
    .btn-secondary:hover { background: var(--vert-pale); }
    .btn-outline-white { background: transparent; color: var(--blanc); border-color: rgba(255,255,255,.5); }
    .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--blanc); }

    /* ── Navigation ──────────────────────────────────────── */
    nav {
      /*position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: var(--blanc); box-shadow: 0 1px 12px rgba(0,0,0,.08);
      height: 68px; display: flex; align-items: center;*/
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--vert); font-weight: 700; }
    .nav-logo span { color: var(--rouge); }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a { font-size: .88rem; font-weight: 500; color: var(--texte-sec); transition: color .2s; }
    .nav-links a:hover { color: var(--vert); }
    .nav-ctas { display: flex; gap: 12px; }
    .nav-ctas .btn { padding: 10px 20px; font-size: .85rem; }
    nav.ekit-wid-con {box-shadow: none !important;} /* Annule l'effet shadow ajouté par ElemntsKit sur la nav*/    
    .elementskit-navbar-nav .ekit-menu-nav-link:hover {color: var(--vert) !important;}/* Hover liens nav ElementsKit */

    /* ── Hero ────────────────────────────────────────────── */
    .hero {
      /*min-height: 100vh;*/
      display: flex;
	  align-items: center;
	  /*padding-top: 68px;*/
      position: relative;
	  overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      /* Overlay vert foncé semi-transparent par-dessus l'image */
      background: linear-gradient(135deg, rgba(26,92,46,.92) 0%, rgba(26,92,46,.78) 60%, rgba(20,70,35,.85) 100%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 720px!important; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 6px 16px;
      font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: 28px; }
    .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
    .hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--blanc); margin-bottom: 24px; }
    .hero h1 em { font-style: normal; color: #86efac; }
    .hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero-stats { display: flex; gap: 64px; padding-top: 48px;
      border-top: 1px solid rgba(255,255,255,.15); }
    .stat-item { }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--blanc); font-weight: 700; line-height: 1; }
    .stat-label { font-size: .88rem; color: rgba(255,255,255,.65); margin-top: 8px; letter-spacing: .02em; }

    /* ── Problème ────────────────────────────────────────── */
    .problem-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
    .problem-intro h2 { font-size: 2rem; margin-bottom: 16px; }
    .problem-intro p { color: var(--texte-sec); font-size: 1.05rem; }
    .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .card { background: var(--blanc); border-radius: 12px; padding: 32px; box-shadow: var(--ombre);
      border-top: 3px solid var(--vert-clair); transition: transform .2s, box-shadow .2s; }
    .card:hover { transform: translateY(-4px); box-shadow: var(--ombre-lg); }
    .card-icon { font-size: 2rem; margin-bottom: 16px; }
    .card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--vert); }
    .card p  { font-size: .9rem; color: var(--texte-sec); line-height: 1.6; }

    /* ── Solution ────────────────────────────────────────── */
    .solution { text-align: center; background:var(--vert)}
    .solution h2 { font-size: 2.1rem; color: var(--blanc); margin-bottom: 20px; max-width: 700px; margin-inline: auto; }
    .solution p  { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 16px; font-size: 1rem; line-height: 1.7; }
    .promise-box { display: inline-block; margin-top: 36px; background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.25); border-radius: 8px; padding: 20px 36px;
      font-size: 1.05rem; color: var(--blanc); font-style: italic; max-width: 620px; }

    /* ── Livrables ───────────────────────────────────────── */
    .deliverables-header { text-align: center; margin-bottom: 56px; }
    .deliverables-header h2 { font-size: 2rem; margin-bottom: 12px; }
    .deliverables-header p { color: var(--texte-sec); }
    .deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .deliverable-card { background: var(--blanc); border-radius: 12px; overflow: hidden; box-shadow: var(--ombre); }
    .deliverable-header { background: var(--vert); padding: 24px 28px; }
    .deliverable-header h3 { color: var(--blanc); font-size: 1.2rem; margin-bottom: 4px; }
    .deliverable-header p  { color: rgba(255,255,255,.7); font-size: .88rem; }
    .deliverable-body { padding: 28px; }
    .deliverable-body ul { list-style: none; }
    .deliverable-body ul li { display: flex; gap: 10px; padding: 8px 0;
      border-bottom: 1px solid var(--gris); font-size: .9rem; color: var(--texte-sec); }
    .deliverable-body ul li:last-child { border: none; }
    .deliverable-body ul li::before { content: '✓'; color: var(--vert); font-weight: 700; flex-shrink: 0; }
    .components-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
    .component-tag { background: var(--vert-pale); border-radius: 4px; padding: 5px 10px;
      font-size: .78rem; color: var(--vert); font-weight: 500; }

    /* ── Processus ───────────────────────────────────────── */
    .process-header { text-align: center; margin-bottom: 56px; }
    .process-header h2 { font-size: 2rem; margin-bottom: 12px; }
    .steps { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
    .step { display: flex; gap: 24px; align-items: flex-start; position: relative; padding-bottom: 40px; }
    .step:last-child { padding-bottom: 0; }
    .step::before { content: ''; position: absolute; left: 27px; top: 56px; bottom: 0;
      width: 2px; background: var(--vert-clair); }
    .step:last-child::before { display: none; }
    .step-num { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
      background: var(--vert); color: var(--blanc); font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 6px var(--vert-clair); }
    .step-content { padding-top: 8px; }
    .step-content h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--vert); margin-bottom: 6px; }
    .step-content p { font-size: .92rem; color: var(--texte-sec); }
    .freemium-banner { margin-top: 48px; background: var(--vert-pale);
      border: 1px dashed var(--vert-clair); border-radius: 10px; padding: 24px 32px;
      text-align: center; }
    .freemium-banner p { color: var(--texte-sec); font-size: .95rem; margin-bottom: 16px; }

    /* ── Pour qui ────────────────────────────────────────── */
    .audience-header { text-align: center; margin-bottom: 56px; }
    .audience-header h2 { font-size: 2rem; margin-bottom: 12px; }
    .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .audience-card { background: var(--blanc); border-radius: 10px; padding: 28px;
      border: 1px solid var(--gris-med); transition: all .2s; }
    .audience-card:hover { border-color: var(--vert); box-shadow: var(--ombre); }
    .audience-icon { font-size: 1.8rem; margin-bottom: 12px; }
    .audience-card h3 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
      color: var(--vert); margin-bottom: 8px; }
    .audience-card p { font-size: .88rem; color: var(--texte-sec); line-height: 1.6; }

    /* ── Crédibilité ─────────────────────────────────────── */
    .credibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; margin-bottom: 0; }
    .credibility-text h2 { font-size: 1.9rem; color: var(--blanc); margin-bottom: 20px; }
    .credibility-text p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 16px; font-size: .95rem; }
    .credibility-text em { color: rgba(255,255,255,.6); font-style: italic; font-size: .88rem; }
    .trust-list { list-style: none; }
    .trust-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.85); font-size: .9rem; padding: 7px 0; }
    .trust-list li:last-child { border: none; }
    .trust-list li::before { content: '✓'; color: #86efac; font-weight: 700; margin-top: 1px; }
    .powered-by { display: flex; align-items: center; gap: 12px; margin-top: 16px;
      background: rgba(255,255,255,.08); border-radius: 8px; padding: 12px 16px;
      font-size: .85rem; color: rgba(255,255,255,.7); }

    /* ── Testimonials ────────────────────────────────────── */
    .testimonials-section { padding-top: 24px; }
    .testimonials-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.5); text-align: center; margin-bottom: 32px; }
    .carousel-track-wrapper { overflow: hidden; position: relative; }
    .carousel-track { display: flex; gap: 24px; animation: scroll-testimonials 18s linear infinite; width: max-content; }
    .carousel-track:hover { animation-play-state: paused; }
    @keyframes scroll-testimonials {
      0%   { transform: translateX(0); }
      100% { transform: translateX(calc(-50%)); }
    }
    .testimonial-card { flex-shrink: 0; width: 360px; background: var(--vert-pale);
      border: 1px solid var(--gris-med); border-radius: 12px; padding: 28px; }
    .testimonial-quote { font-size: .95rem; color: var(--texte-sec); line-height: 1.7;
      margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar { width: 44px; height: 44px; border-radius: 0%; object-fit: cover;
      background: var(--vert-med); display: flex; align-items: center; justify-content: center;
      font-weight: 700; color: var(--blanc); font-size: 1rem; flex-shrink: 0; }
    .testimonial-info strong { display: block; font-size: .88rem; color: var(--texte-sec); }
    .testimonial-info span  { font-size: .8rem; color: var(--texte-sec); }

    /* ── Prix ────────────────────────────────────────────── */
    .pricing-header { text-align: center; margin-bottom: 48px; }
    .pricing-header h2 { font-size: 2rem; margin-bottom: 12px; }
    .pricing-header p  { color: var(--texte-sec); }
    .pricing-card { max-width: 520px; margin: 0 auto; background: var(--blanc);
      border-radius: 16px; box-shadow: var(--ombre-lg); overflow: hidden; border: 2px solid var(--vert); }
    .pricing-card-header { background: var(--vert); padding: 36px 40px 28px; text-align: center; }
    .pricing-card-header h3 { font-size: 1.3rem; color: var(--blanc); margin-bottom: 8px; }
    .price { font-family: 'Playfair Display', serif; font-size: 3.6rem; color: var(--blanc); font-weight: 700; }
    .price-suffix { font-size: 1rem; color: rgba(255,255,255,.7); margin-top: 4px; }
    .pricing-card-body { padding: 36px 40px; }
    .pricing-features { list-style: none; margin-bottom: 32px; }
    .pricing-features li { display: flex; gap: 12px; align-items: center; padding: 10px 0;
      font-size: .95rem; border-bottom: 1px solid var(--gris); }
    .pricing-features li:last-child { border: none; }
    .pricing-features li .check { color: var(--vert); font-size: 1.1rem; font-weight: 700; }
    .pricing-cta { width: 100%; padding: 16px; font-size: 1rem; border-radius: 8px; text-align: center;
      display: block; background: var(--rouge); color: var(--blanc); font-weight: 700; border: none;
      cursor: pointer; transition: all .2s; }
    .pricing-cta:hover { background: #a82314; transform: translateY(-1px); }
    .pricing-freemium { text-align: center; margin-top: 32px; color: var(--texte-sec); font-size: .92rem; }
    .pricing-freemium a { color: var(--vert); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

    /* ── FAQ ─────────────────────────────────────────────── */
    .faq-header { text-align: center; margin-bottom: 48px; }
    .faq-header h2 { font-size: 2rem; margin-bottom: 12px; }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--gris-med); }
    .faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
      font-size: 1rem; font-weight: 600; color: var(--texte); gap: 16px; }
    .faq-question .icon { width: 24px; height: 24px; border-radius: 50%; background: var(--vert-clair);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      color: var(--vert); font-size: 1rem; font-weight: 700; transition: transform .2s; }
    .faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--vert); color: var(--blanc); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-answer p { padding-bottom: 22px; color: var(--texte-sec); font-size: .95rem; line-height: 1.7; }

    /* ── CTA Final ───────────────────────────────────────── */
    .cta-final { background: var(--vert); text-align: center; padding: 96px 0; }
    .cta-final h2 { font-size: 2.2rem; color: var(--blanc); margin-bottom: 16px; }
    .cta-final p  { color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 40px; font-size: 1rem; }
    .cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ── Footer ──────────────────────────────────────────── */
    footer { background: #0d2e17; padding: 56px 0 32px; }
    .footer-top { display: grid; grid-template-columns: 1fr auto; gap: 48px; margin-bottom: 48px; }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--blanc); margin-bottom: 10px; }
    .footer-logo span { color: var(--rouge); }
    .footer-desc { font-size: .85rem; color: rgba(255,255,255,.45); max-width: 280px; line-height: 1.7; }
    .footer-links { display: flex; gap: 48px; }
    .footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-bottom: 16px; }
    .footer-col a  { display: block; font-size: .88rem; color: rgba(255,255,255,.65);
      margin-bottom: 8px; transition: color .2s; }
    .footer-col a:hover { color: var(--blanc); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
    .footer-bottom p   { font-size: .8rem; color: rgba(255,255,255,.3); }
    .footer-brand { font-size: .8rem; color: rgba(255,255,255,.35); }

    /* ── Divider ─────────────────────────────────────────── */
    .divider { height: 1px; background: var(--gris-med); margin: 0; }

    /* Neutralise la couleur active forcée par ElementsKit sur la landing */
    .elementskit-navbar-nav .ekit-menu-nav-link.active,
    .elementskit-navbar-nav li.current-menu-item > .ekit-menu-nav-link,
    .elementskit-navbar-nav li.current_page_item > .ekit-menu-nav-link {
      color: var(--texte-sec) !important;
    }

    /* Hover reste vert */
    .elementskit-navbar-nav .ekit-menu-nav-link:hover,
    .elementskit-navbar-nav .ekit-menu-nav-link.active:hover {
      color: var(--vert) !important;
    }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .cards-grid, .audience-grid { grid-template-columns: 1fr; }
      .deliverables-grid { grid-template-columns: 1fr; }
      .credibility-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-links { flex-direction: column; gap: 24px; }
      .hero-stats { flex-direction: column; gap: 20px; }
    }
    @media (max-width: 600px) {
      section { padding: 64px 0; }
      .hero h1 { font-size: 1.9rem; }
      .hero-ctas { flex-direction: column; }
    }

	/* Footer vert sur TOUS les templates Elementor sauf landing */
	body:not(.semperia-landing) .ekit-template-content-footer .elementor-element-b431dd1,
	body:not(.semperia-landing) .ekit-template-content-footer .elementor-element-b7a2188 {
		background: #0d2e17 !important;
	}

	body:not(.semperia-landing) .ekit-template-content-footer .footer-top,
	body:not(.semperia-landing) .ekit-template-content-footer .footer-bottom {
		background: transparent !important;
	}
