*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--green:#0d9e7e;--dark:#111;--light:#f8f8f8;--white:#fff;--gray:#555;--radius:12px}
body{font-family:'Segoe UI',sans-serif;background:var(--white);color:var(--dark);overflow-x:hidden;position:relative}
.container{max-width:1100px;margin:0 auto;padding:0 24px}

/* HEADER */
.header{display:flex;align-items:center;justify-content:center;padding:16px 40px;background:var(--white);border-bottom:1px solid #eee;position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(0,0,0,0.06)}
nav{display:flex;align-items:center;gap:32px}
nav a{text-decoration:none;color:var(--dark);font-size:0.95rem;font-weight:500;transition:color 0.2s}
nav a:hover{color:var(--green)}
.btn-nav{background:var(--green);color:var(--white)!important;padding:9px 20px;border-radius:8px;font-weight:700}

/* HERO */
.hero{width:100%;display:flex;align-items:center;justify-content:center;gap:80px;padding:100px 40px;background:linear-gradient(135deg,#f0faf7 0%,#fff 100%);min-height:90vh}
.hero-logo img{width:300px;animation:float 4s ease-in-out infinite;filter:drop-shadow(0 12px 32px rgba(13,158,126,0.2))}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.hero-text h1{font-size:3rem;font-weight:900;line-height:1.2;margin-bottom:16px}
.hero-sub{font-size:1.1rem;color:var(--gray);margin-bottom:36px}
.hero-btns{display:flex;gap:16px}
.btn{padding:14px 28px;border-radius:var(--radius);font-weight:700;font-size:1rem;text-decoration:none;cursor:pointer;border:none;display:inline-block;transition:all 0.2s}
.btn.primary{background:var(--green);color:var(--white)}
.btn.primary:hover{background:#0b8a6e;transform:translateY(-2px)}
.btn.secondary{background:transparent;color:var(--dark);border:2px solid var(--dark)}
.btn.secondary:hover{background:var(--dark);color:var(--white)}

/* PARTNERS */
.partners{width:100%;background:var(--white);padding:36px 40px;text-align:center;border-top:1px solid #eee;border-bottom:1px solid #eee}
.partners-label{font-size:0.78rem;font-weight:700;color:var(--gray);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:20px}
.partners-logos{display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap}
.partners-logos img{height:44px;object-fit:contain;filter:grayscale(40%);opacity:0.8;transition:all 0.3s}
.partners-logos img:hover{filter:grayscale(0%);opacity:1;transform:scale(1.05)}

/* SERVICES GRID */
.services-grid-section{width:100%;padding:80px 40px;background:var(--light);text-align:center}
.section-tag{font-size:0.78rem;font-weight:700;color:var(--green);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:10px}
.services-grid-section h2,.why-us h2,.tva-section h2,.faq-section h2,.cta-band h2{font-size:2rem;font-weight:800;margin-bottom:40px}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1100px;margin:0 auto}
.service-block{background:var(--white);border-radius:var(--radius);padding:28px 20px;text-align:left;box-shadow:0 2px 16px rgba(0,0,0,0.06);transition:all 0.25s;text-decoration:none;color:var(--dark);display:block;border:2px solid transparent}
.service-block:hover{transform:translateY(-6px);border-color:var(--green);box-shadow:0 8px 32px rgba(13,158,126,0.15)}
.sb-icon{font-size:2rem;margin-bottom:12px}
.service-block h3{font-size:1rem;font-weight:700;margin-bottom:8px}
.service-block p{color:var(--gray);font-size:0.85rem;line-height:1.6}

/* STATS */
.stats-section{width:100%;background:var(--green);padding:60px 40px}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;max-width:1100px;margin:0 auto}
.stat-item{color:var(--white)}
.stat-item .stat-num{font-size:3rem;font-weight:900}
.stat-item span:last-of-type{font-size:1.5rem;font-weight:700}
.stat-item p{opacity:0.85;margin-top:6px;font-size:0.9rem}

/* WHY US */
.why-us{width:100%;padding:80px 40px;text-align:center}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1100px;margin:0 auto;text-align:left}
.why-item{display:flex;gap:14px;align-items:flex-start;background:var(--light);padding:24px;border-radius:var(--radius);opacity:0;transform:translateY(20px);transition:opacity 0.5s,transform 0.5s}
.why-item.visible{opacity:1;transform:translateY(0)}
.why-item span{font-size:1.3rem}
.why-item h4{font-weight:700;margin-bottom:4px;font-size:0.95rem}
.why-item p{color:var(--gray);font-size:0.88rem;line-height:1.5}

/* TVA */
.tva-section{width:100%;padding:80px 40px;background:var(--light);text-align:center}
.tva-intro{max-width:700px;margin:0 auto 40px;color:var(--gray);line-height:1.7}
.tva-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;max-width:900px;margin:0 auto}
.tva-card{border-radius:var(--radius);padding:32px;text-align:left}
.tva-card.green{background:#f0faf7;border:2px solid #b2e5d8}
.tva-card.gray{background:#fafafa;border:2px solid #eee}
.tva-header{font-weight:800;font-size:1.1rem;margin-bottom:16px}
.tva-card ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.tva-card ul li{padding-left:20px;position:relative;color:var(--gray);font-size:0.9rem;line-height:1.5}
.tva-card ul li::before{content:"•";position:absolute;left:0;color:var(--green)}

/* FAQ */
.faq-section{width:100%;padding:80px 40px;background:var(--white);text-align:center}
.faq-list{max-width:800px;margin:0 auto;text-align:left}
.faq-item{border-bottom:1px solid #eee}
.faq-question{width:100%;background:none;border:none;padding:20px 0;font-size:1rem;font-weight:600;cursor:pointer;display:flex;justify-content:space-between;align-items:center;color:var(--dark);text-align:left}
.faq-question span{font-size:1.4rem;color:var(--green);transition:transform 0.2s;flex-shrink:0;margin-left:12px}
.faq-question.open span{transform:rotate(45deg)}
.faq-answer{display:none;padding:0 0 20px;color:var(--gray);font-size:0.95rem;line-height:1.7}
.faq-answer.open{display:block}

/* CTA */
.cta-band{width:100%;background:var(--green);color:var(--white);text-align:center;padding:80px 40px}
.cta-band h2{color:var(--white);margin-bottom:12px}
.cta-band p{margin-bottom:32px;opacity:0.85}
.cta-band .btn.primary{background:var(--white);color:var(--green)}

/* FOOTER */
.footer{width:100%;background:#111;color:#ccc}
.footer-inner{max-width:100%;padding:56px 80px 0}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;margin-bottom:40px}
.footer-col{display:flex;flex-direction:column;gap:8px}
.footer-logo{font-size:1.3rem;font-weight:800;color:var(--white);margin-bottom:6px}
.footer-logo span{color:var(--green)}
.footer-col p{font-size:0.88rem;line-height:1.8;color:#aaa}
.footer-title{font-weight:700;color:var(--white)!important;font-size:0.95rem;margin-bottom:4px}
.footer-col a{color:#aaa;text-decoration:none;font-size:0.88rem;transition:color 0.2s;line-height:2}
.footer-col a:hover{color:var(--green)}
.footer-logos{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.footer-logos img{height:32px;object-fit:contain;filter:brightness(0.7);transition:0.2s}
.footer-logos img:hover{filter:brightness(1)}
.footer-bottom{border-top:1px solid #222;padding:20px 0;display:flex;justify-content:space-between;align-items:center;font-size:0.82rem;color:#555}
.proxect a{color:var(--green);text-decoration:none;font-weight:600}
.proxect a:hover{color:#fff}

/* MASCOTTE */
.mascotte{position:absolute;font-size:2.4rem;z-index:50;pointer-events:none;opacity:0;transition:top 0.8s cubic-bezier(0.34,1.56,0.64,1),opacity 0.4s;right:16px}
.mascotte.visible{opacity:1}
.mascotte.flip{transform:scaleX(-1)}
.mascotte.bounce{animation:mascotteBounce 0.7s ease}
@keyframes mascotteBounce{0%,100%{transform:translateY(0)}40%{transform:translateY(-16px)}70%{transform:translateY(-6px)}}
.mascotte-anchor{height:1px;width:100%}

/* ROBOT */
.robot-assistant{position:fixed;bottom:28px;right:28px;z-index:999;display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.robot-icon{width:58px;height:58px;background:var(--green);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.8rem;cursor:pointer;box-shadow:0 4px 20px rgba(13,158,126,0.4);transition:transform 0.2s;animation:pulse 3s infinite}
.robot-icon:hover{transform:scale(1.1)}
@keyframes pulse{0%,100%{box-shadow:0 4px 20px rgba(13,158,126,0.4)}50%{box-shadow:0 4px 30px rgba(13,158,126,0.7)}}
.robot-bubble{display:none;width:320px;background:var(--white);border-radius:16px;box-shadow:0 8px 40px rgba(0,0,0,0.15);overflow:hidden;flex-direction:column;position:relative}
.robot-bubble.open{display:flex;flex-direction:column}
.robot-msg{background:var(--green);color:var(--white);padding:14px 40px 14px 16px;font-weight:600;font-size:0.9rem}
.robot-close{position:absolute;top:12px;right:12px;background:none;border:none;color:var(--white);font-size:1.1rem;cursor:pointer}
.chat-messages{padding:14px;display:flex;flex-direction:column;gap:8px;max-height:200px;overflow-y:auto}
.chat-msg{padding:10px 14px;border-radius:10px;font-size:0.88rem;line-height:1.5;max-width:85%}
.chat-msg.bot{background:var(--light);align-self:flex-start}
.chat-msg.user{background:var(--green);color:var(--white);align-self:flex-end}
.chat-suggestions{padding:10px 12px;display:flex;flex-wrap:wrap;gap:6px;border-top:1px solid #eee}
.chat-suggestions button{background:var(--light);border:1px solid #ddd;border-radius:20px;padding:5px 11px;font-size:0.78rem;cursor:pointer;transition:0.2s}
.chat-suggestions button:hover{background:var(--green);color:var(--white);border-color:var(--green)}
.chat-input-row{display:flex;border-top:1px solid #eee}
.chat-input-row input{flex:1;padding:12px 14px;border:none;outline:none;font-size:0.88rem}
.chat-input-row button{background:var(--green);color:var(--white);border:none;padding:0 16px;cursor:pointer;font-size:1rem}

/* CONTACT */
.page-hero-contact{background:linear-gradient(135deg,#0d9e7e,#0b7a62);color:#fff;padding:80px 40px;text-align:center}
.page-hero-contact .section-tag{color:rgba(255,255,255,0.8)}
.page-hero-contact h1{font-size:2.5rem;font-weight:900;margin:12px 0}
.page-hero-contact p{opacity:0.85;font-size:1rem}
.contact-section{padding:80px 40px;background:var(--light)}
.contact-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:48px;align-items:start}
.contact-form-box{background:var(--white);border-radius:16px;padding:40px;box-shadow:0 4px 24px rgba(0,0,0,0.07)}
.contact-form-box h2{font-size:1.5rem;font-weight:800;margin-bottom:8px}
.form-sub{color:var(--gray);font-size:0.9rem;margin-bottom:28px}
.devis-form{display:flex;flex-direction:column;gap:18px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group label{font-size:0.85rem;font-weight:600;color:var(--dark)}
.form-group input,.form-group select,.form-group textarea{padding:12px 14px;border:1.5px solid #ddd;border-radius:8px;font-size:0.9rem;font-family:inherit;transition:border 0.2s;outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--green)}
.form-group textarea{resize:vertical}
.btn-full{width:100%;justify-content:center;padding:16px;font-size:1rem}
.form-note{font-size:0.78rem;color:#aaa;text-align:center}
.sent-box{text-align:center;padding:40px 20px}
.sent-icon{font-size:3.5rem;margin-bottom:16px}
.sent-box h2{font-size:1.6rem;font-weight:800;margin-bottom:10px}
.sent-box p{color:var(--gray);line-height:1.7}
.contact-info-box{display:flex;flex-direction:column;gap:16px}
.info-card{display:flex;gap:14px;align-items:flex-start;background:var(--white);padding:20px;border-radius:12px;box-shadow:0 2px 12px rgba(0,0,0,0.05)}
.info-card.highlight{background:#f0faf7;border:2px solid #b2e5d8}
.info-icon{font-size:1.4rem;flex-shrink:0}
.info-card h4{font-weight:700;font-size:0.9rem;margin-bottom:4px}
.info-card p,.info-card a{color:var(--gray);font-size:0.88rem;line-height:1.5;text-decoration:none}
.info-card a:hover{color:var(--green)}

@media(max-width:768px){
  .hero{flex-direction:column;text-align:center;padding:60px 24px;min-height:auto;gap:40px}
  .hero-logo img{width:200px}
  .hero-text h1{font-size:2rem}
  .hero-btns{justify-content:center;flex-wrap:wrap}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:1fr}
  .tva-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .footer-inner{padding:40px 24px 0}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .partners-logos img{height:32px}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

/* MASCOTTES FIXES */
.mascotte-fixed {
  position: absolute;
  width: 120px;
  pointer-events: none;
  z-index: 50;
  animation: floatMascotte 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}
.mascotte-fixed img { width: 100%; }
.mascotte-fixed.flip img { transform: scaleX(-1); }
@keyframes floatMascotte {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Position 1 — entre hero et partenaires, côté droit */
#m1 { top: 88vh; left: calc(50% - 60px); }

/* Position 2 — entre stats et pourquoi nous, côté gauche */
#m2 { top: 260vh; right: 32px; }
/* Position 3 — entre TVA et FAQ, côté droit */
#m3 { display: none; }

.mascotte-fixed {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.mascotte-fixed.visible {
  opacity: 1;
}

/* MASCOTTE CONTACT */
.mascotte-contact {
  text-align: center;
  margin-top: 16px;
  animation: floatMascotte 4s ease-in-out infinite;
}
.mascotte-contact img {
  width: 140px;
  filter: drop-shadow(0 8px 16px rgba(13,158,126,0.2));
}

/* SERVICES PAGE */
.services-hero{width:100%;display:flex;align-items:center;justify-content:space-between;padding:100px 80px;background:linear-gradient(135deg,#f0faf7 0%,#fff 100%);min-height:85vh;gap:40px}
.services-hero-content{max-width:560px}
.services-hero-content h1{font-size:3rem;font-weight:900;line-height:1.2;margin-bottom:16px}
.services-hero-mascotte img{width:360px;animation:float 4s ease-in-out infinite;filter:drop-shadow(0 12px 32px rgba(13,158,126,0.2))}

/* ABOUT */
.about-section{padding:80px 40px;background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr 2fr;gap:60px;align-items:center}
.about-img img{width:100%;max-width:280px;margin:0 auto;display:block}
.about-lead{font-size:1.05rem;color:var(--gray);line-height:1.8;margin-bottom:28px}
.about-text h2{font-size:1.8rem;font-weight:800;margin-bottom:12px}
.certif-list{display:flex;flex-direction:column;gap:16px}
.certif-item{display:flex;gap:14px;align-items:flex-start}
.certif-item span{font-size:1.3rem;flex-shrink:0}
.certif-item h4{font-weight:700;font-size:0.95rem;margin-bottom:3px}
.certif-item p{color:var(--gray);font-size:0.88rem;line-height:1.5}

/* SERVICES FULL */
.services-full-section{padding:80px 40px;background:var(--light);text-align:center}
.services-full-section h2{font-size:2rem;font-weight:800;margin-bottom:48px}
.services-full-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1200px;margin:0 auto;text-align:left}
.sf-card{background:var(--white);border-radius:var(--radius);padding:28px 22px;box-shadow:0 2px 16px rgba(0,0,0,0.06);transition:all 0.25s;border:2px solid transparent}
.sf-card:hover{transform:translateY(-5px);border-color:var(--green);box-shadow:0 8px 32px rgba(13,158,126,0.12)}
.sf-icon{font-size:2rem;margin-bottom:12px}
.sf-card h3{font-size:1rem;font-weight:700;margin-bottom:10px;color:var(--dark)}
.sf-card p{color:var(--gray);font-size:0.85rem;line-height:1.6;margin-bottom:12px}
.sf-card ul{list-style:none;display:flex;flex-direction:column;gap:6px}
.sf-card ul li{font-size:0.82rem;color:var(--green);font-weight:600;padding-left:16px;position:relative}
.sf-card ul li::before{content:"→";position:absolute;left:0}

/* PROTOCOLE */
.protocole-section{padding:80px 40px;background:var(--dark);color:var(--white);text-align:center}
.protocole-section .section-tag{color:var(--green)}
.protocole-section h2{font-size:2rem;font-weight:800;margin-bottom:16px;color:var(--white)}
.protocole-intro{max-width:700px;margin:0 auto 48px;color:#aaa;line-height:1.7}
.protocole-steps{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;max-width:1200px;margin:0 auto}
.step-card{background:#1a1a1a;border-radius:var(--radius);padding:28px 20px;text-align:left;border-top:3px solid var(--green);transition:transform 0.2s}
.step-card:hover{transform:translateY(-4px)}
.step-num{width:40px;height:40px;background:var(--green);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:1.1rem;margin-bottom:16px}
.step-card h3{font-size:0.95rem;font-weight:700;margin-bottom:10px;color:var(--white)}
.step-card p{color:#888;font-size:0.85rem;line-height:1.6}
.step-card strong{color:#ccc}

/* BIO */
.bio-section{padding:80px 40px;background:var(--white)}
.bio-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:60px;align-items:center}
.bio-text .section-tag{margin-bottom:10px}
.bio-text h2{font-size:2rem;font-weight:900;margin-bottom:20px;line-height:1.2}
.bio-text p{color:var(--gray);line-height:1.8;margin-bottom:16px;font-size:0.95rem}
.bio-pillars{display:flex;flex-direction:column;gap:16px;margin-top:24px}
.bio-item{display:flex;gap:14px;align-items:flex-start}
.bio-item span{font-size:1.4rem;flex-shrink:0}
.bio-item h4{font-weight:700;font-size:0.95rem;margin-bottom:4px}
.bio-item p{color:var(--gray);font-size:0.88rem;line-height:1.5;margin:0}
.bio-mascotte img{width:100%;max-width:320px;margin:0 auto;display:block;animation:float 4s ease-in-out infinite;filter:drop-shadow(0 12px 32px rgba(13,158,126,0.15))}

/* NAV ACTIVE */
nav a.active{color:var(--green);font-weight:700}

@media(max-width:768px){
  .services-hero{flex-direction:column;padding:60px 24px;text-align:center;min-height:auto}
  .services-hero-content h1{font-size:2rem}
  .services-hero-mascotte img{width:200px}
  .about-grid{grid-template-columns:1fr}
  .services-full-grid{grid-template-columns:repeat(2,1fr)}
  .protocole-steps{grid-template-columns:1fr}
  .bio-grid{grid-template-columns:1fr}
}

/* SERVICES PAGE */
.page-hero-services{background:linear-gradient(135deg,#0d9e7e,#0b7a62);color:#fff;padding:80px 40px;text-align:center}
.page-hero-services .section-tag{color:rgba(255,255,255,0.8)}
.page-hero-services h1{font-size:2.5rem;font-weight:900;margin:12px 0}
.page-hero-services p{opacity:0.85}

.methode-section{padding:80px 40px;background:var(--light);text-align:center}
.methode-section h2{font-size:2rem;font-weight:800;margin-bottom:12px}
.methode-intro{color:var(--gray);margin-bottom:36px;max-width:700px;margin-left:auto;margin-right:auto}
.methode-table{max-width:1000px;margin:0 auto;border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.08)}
.methode-head{display:grid;grid-template-columns:repeat(4,1fr);background:var(--dark);color:var(--white);padding:16px 20px;gap:12px}
.methode-head span{font-weight:700;font-size:0.85rem}
.methode-row{display:grid;grid-template-columns:repeat(4,1fr);padding:16px 20px;gap:12px;background:var(--white);border-bottom:1px solid #eee;font-size:0.88rem;color:var(--gray)}
.methode-row:last-child{border-bottom:none}
.methode-row:nth-child(odd){background:#fafafa}

.services-detail-section{padding:80px 40px;background:var(--white)}
.services-detail-section h2{font-size:2rem;font-weight:800;margin-bottom:48px;text-align:center}
.service-detail{margin-bottom:40px;border-radius:var(--radius);overflow:hidden;box-shadow:0 2px 20px rgba(0,0,0,0.07);transition:transform 0.2s}
.service-detail:hover{transform:translateY(-3px)}
.sd-header{display:flex;align-items:center;gap:16px;padding:24px 28px;background:var(--dark);color:var(--white)}
.sd-icon{font-size:1.8rem}
.sd-header h3{font-size:1.2rem;font-weight:700;margin:0}
.sd-body{padding:28px;background:var(--white)}
.sd-body>p{color:var(--gray);line-height:1.7;margin-bottom:20px}
.sd-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:20px}
.sd-cols h4{font-weight:700;font-size:0.9rem;margin-bottom:6px;color:var(--green)}
.sd-cols p{color:var(--gray);font-size:0.88rem;line-height:1.5}
.sd-tags{display:flex;flex-wrap:wrap;gap:8px}
.sd-tags span{background:#f0faf7;color:var(--green);border:1px solid #b2e5d8;border-radius:20px;padding:4px 12px;font-size:0.78rem;font-weight:600}

/* A PROPOS PAGE */
.page-hero-apropos{background:linear-gradient(135deg,#f0faf7 0%,#fff 100%);padding:100px 80px;min-height:60vh;display:flex;align-items:center}
.apropos-hero-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:60px;align-items:center;width:100%}
.apropos-hero-text h1{font-size:2.8rem;font-weight:900;line-height:1.2;margin-bottom:16px}
.apropos-hero-text p{color:var(--gray);font-size:1.05rem;line-height:1.7}
.apropos-hero-img img{width:100%;max-width:360px;animation:float 4s ease-in-out infinite;filter:drop-shadow(0 12px 32px rgba(13,158,126,0.2))}

.fondateur-section{padding:80px 40px;background:var(--white)}
.fondateur-grid{display:grid;grid-template-columns:1fr 2fr;gap:60px;align-items:start}
.fondateur-logo img{width:100%;max-width:240px;margin:0 auto;display:block}
.fondateur-text h2{font-size:2rem;font-weight:800;margin-bottom:12px}
.fondateur-lead{font-size:1.05rem;color:var(--gray);line-height:1.8;margin-bottom:16px}
.fondateur-text p{color:var(--gray);line-height:1.7;margin-bottom:16px;font-size:0.95rem}
.fondateur-values{display:flex;flex-direction:column;gap:16px;margin-top:24px}
.fv-item{display:flex;gap:14px;align-items:flex-start}
.fv-item span{font-size:1.4rem;flex-shrink:0}
.fv-item h4{font-weight:700;font-size:0.95rem;margin-bottom:4px}
.fv-item p{color:var(--gray);font-size:0.88rem;line-height:1.5;margin:0}

.certif-section{padding:80px 40px;background:var(--light);text-align:center}
.certif-section h2{font-size:2rem;font-weight:800;margin-bottom:12px}
.certif-intro{color:var(--gray);max-width:700px;margin:0 auto 48px;line-height:1.7}
.certif-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1100px;margin:0 auto}
.certif-card{background:var(--white);border-radius:var(--radius);padding:32px 24px;text-align:left;box-shadow:0 2px 16px rgba(0,0,0,0.06);transition:transform 0.2s}
.certif-card:hover{transform:translateY(-4px)}
.certif-card.future{border:2px dashed var(--green);background:#f0faf7}
.certif-logo{height:48px;display:flex;align-items:center;margin-bottom:16px}
.certif-logo img{height:100%;object-fit:contain}
.certif-logo{font-size:2.5rem}
.certif-card h3{font-size:1rem;font-weight:700;margin-bottom:4px}
.certif-ref{color:var(--green);font-size:0.82rem;font-weight:700;margin-bottom:10px}
.certif-card p{color:var(--gray);font-size:0.88rem;line-height:1.5}

.bio-quote{border-left:4px solid var(--green);padding:16px 20px;margin-top:24px;color:var(--gray);font-style:italic;font-size:0.95rem;line-height:1.7;background:#f0faf7;border-radius:0 8px 8px 0}

@media(max-width:768px){
  .apropos-hero-grid{grid-template-columns:1fr;text-align:center}
  .apropos-hero-text h1{font-size:2rem}
  .apropos-hero-img img{width:200px;margin:0 auto}
  .fondateur-grid{grid-template-columns:1fr}
  .certif-grid{grid-template-columns:1fr}
  .sd-cols{grid-template-columns:1fr}
  .methode-head,.methode-row{grid-template-columns:1fr;gap:8px}
  .methode-head span,.methode-row span{display:block}
  .page-hero-apropos{padding:60px 24px;min-height:auto}
}