@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:#1a1a2e;background:#fff;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}

:root{
  --blue:#1565C0;
  --green:#2E7D32;
  --red:#C62828;
  --yellow:#F9A825;
  --dark:#1a1a2e;
  --muted:#6b7280;
  --bg:#f8f9fa;
}

.wrap{max-width:1200px;margin:0 auto;padding:0 2rem}

/* ===== NAV ===== */
nav{
  position:sticky;top:0;background:#fff;z-index:100;
  border-bottom:3px solid;
  border-image:linear-gradient(90deg,var(--blue),var(--green),var(--red),var(--yellow)) 1;
  padding:.9rem 0;
  box-shadow:0 2px 16px rgba(0,0,0,.08);
}
.nav-i{
  max-width:1200px;margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;justify-content:space-between;
}

/* ===== LOGO ===== */
.logo{display:flex;align-items:center;gap:.6rem}
.logo-img{height:56px;width:auto;object-fit:contain}
.footer-logo-img{height:48px}
.logo-name{font-size:1.35rem;font-weight:900;letter-spacing:.04em}
.lm{color:var(--blue)}
.lc{color:var(--green)}

/* ===== HAMBURGER ===== */
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;height:44px;
  background:none;border:none;cursor:pointer;
  padding:8px;
  z-index:110;
}
.hamburger-line{
  display:block;
  width:24px;height:2.5px;
  background:var(--dark);
  border-radius:2px;
  transition:all .3s ease;
}
.hamburger-active .hamburger-line:nth-child(1){
  transform:translateY(7.5px) rotate(45deg);
}
.hamburger-active .hamburger-line:nth-child(2){
  opacity:0;
}
.hamburger-active .hamburger-line:nth-child(3){
  transform:translateY(-7.5px) rotate(-45deg);
}

/* ===== NAV LINKS ===== */
.nav-links{display:flex;gap:1.5rem;align-items:center}
.nav-links a{color:var(--muted);font-weight:500;font-size:.9rem;transition:color .2s}
.nav-links a:hover{color:var(--blue)}
.btn-cta{
  background:linear-gradient(135deg,var(--blue),#1976D2);color:#fff;
  padding:.65rem 1.5rem;border:none;border-radius:8px;
  font-weight:700;font-size:.9rem;cursor:pointer;transition:all .2s;
}
.btn-cta:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(21,101,192,.35)}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(135deg,#E3F2FD 0%,#E8F5E9 50%,#FFF8E1 100%);
  padding:5rem 2rem 4rem;text-align:center;
  position:relative;overflow:hidden;
}
.hero h1{font-size:3.5rem;font-weight:900;line-height:1.15;margin-bottom:1.25rem}
.hero h1 .gr{
  background:linear-gradient(135deg,var(--blue),var(--green));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:#fff;padding:.45rem 1.2rem;border-radius:50px;
  font-size:.85rem;font-weight:700;margin-bottom:1.75rem;
  box-shadow:0 2px 10px rgba(0,0,0,.08);border:1.5px solid #e0e0e0;
}
.badge-flag{
  height:16px;width:auto;
  vertical-align:middle;
  border-radius:2px;
  margin-right:4px;
}
.dot{width:8px;height:8px;background:var(--green);border-radius:50%}
.hero p{font-size:1.15rem;color:var(--muted);max-width:600px;margin:0 auto 2.5rem;line-height:1.7}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem}
.btn-main{
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--blue),#1976D2);color:#fff;
  padding:1rem 2.5rem;border:none;border-radius:10px;
  font-size:1.05rem;font-weight:700;cursor:pointer;
  box-shadow:0 6px 20px rgba(21,101,192,.3);transition:all .25s;
}
.btn-main:hover{transform:translateY(-3px)}
.btn-out{
  display:inline-flex;align-items:center;justify-content:center;
  background:#fff;color:var(--blue);padding:1rem 2.5rem;
  border:2.5px solid var(--blue);border-radius:10px;
  font-size:1.05rem;font-weight:700;cursor:pointer;transition:all .25s;
}
.btn-out:hover{background:var(--blue);color:#fff}
.stats{
  display:flex;justify-content:center;gap:3rem;
  padding-top:2rem;border-top:1px solid rgba(0,0,0,.08);flex-wrap:wrap;
}
.stat-n{
  font-size:2rem;font-weight:900;
  background:linear-gradient(135deg,var(--blue),var(--green));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  text-align:center;
}
.stat-l{font-size:.82rem;color:var(--muted);font-weight:500;text-align:center}

/* ===== BANNER ===== */
.banner{background:linear-gradient(135deg,var(--blue) 0%,var(--green) 100%);padding:2.25rem 2rem}
.banner-i{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}
.banner-t{color:rgba(255,255,255,.7);font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:.4rem}
.banner-h{color:#fff;font-size:1.4rem;font-weight:800}
.banner-s{color:rgba(255,255,255,.8);font-size:.875rem;margin-top:.3rem}
.btn-y{
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--yellow);color:var(--dark);padding:.9rem 2rem;
  border:none;border-radius:10px;font-weight:800;font-size:.95rem;
  cursor:pointer;transition:transform .2s;flex-shrink:0;
}
.btn-y:hover{transform:scale(1.05)}

/* ===== SECTIONS ===== */
section{padding:4.5rem 2rem}
h2.sec{font-size:2.25rem;font-weight:800;text-align:center;margin-bottom:.75rem}
.sec-sub{text-align:center;color:var(--muted);margin-bottom:3rem;font-size:1.05rem}

/* ===== SERVICES GRID ===== */
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.75rem}
.card{
  background:#fff;padding:2rem;border-radius:16px;
  box-shadow:0 4px 20px rgba(0,0,0,.06);transition:all .3s;
  border-top:4px solid transparent;
}
.card.blue{border-top-color:var(--blue)}
.card.green{border-top-color:var(--green)}
.card.red{border-top-color:var(--red)}
.card.yellow{border-top-color:var(--yellow)}
.card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(0,0,0,.11)}
.card-icon{
  width:54px;height:54px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:1.25rem;
}
.ic-blue{background:#E3F2FD}
.ic-green{background:#E8F5E9}
.ic-red{background:#FFEBEE}
.ic-yellow{background:#FFF8E1}
.card h3{font-size:1.15rem;font-weight:700;margin-bottom:.75rem;color:var(--dark)}
.card p{color:var(--muted);line-height:1.7;font-size:.95rem}

/* ===== AVANTAGES ===== */
.plus-section{background:linear-gradient(135deg,var(--dark) 0%,#1565C0 100%);padding:4rem 2rem;color:#fff}
.plus-i{max-width:900px;margin:0 auto;text-align:center}
.plus-i h2{font-size:2.25rem;font-weight:800;margin-bottom:1rem}
.plus-i p{color:rgba(255,255,255,.85);font-size:1.1rem;line-height:1.75;max-width:700px;margin:0 auto 2rem}
.plus-badges{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}
.pbadge{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  padding:.6rem 1.25rem;border-radius:50px;font-size:.9rem;font-weight:600;color:#fff;
}

/* ===== NOS OFFRES ===== */
.offer-section{
  background:var(--bg);
  padding:4.5rem 2rem;
  position:relative;
}
.offer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  max-width:900px;
  margin:0 auto 2.5rem;
}
.offer-card{
  background:#fff;
  padding:2.5rem 2rem;
  border-radius:16px;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
  transition:all .3s;
  position:relative;
  border-top:4px solid transparent;
}
.offer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 40px rgba(0,0,0,.11);
}
.offer-blue{border-top-color:var(--blue)}
.offer-green{border-top-color:var(--green)}
.offer-badge{
  display:inline-block;
  background:#E3F2FD;color:var(--blue);
  font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  padding:.35rem .9rem;border-radius:50px;
  margin-bottom:1.25rem;
}
.offer-badge-green{
  background:#E8F5E9;color:var(--green);
}
.offer-icon{
  width:56px;height:56px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;
}
.offer-card h3{
  font-size:1.4rem;font-weight:800;color:var(--dark);margin-bottom:.5rem;
}
.offer-tagline{
  font-size:1rem;color:var(--muted);font-weight:500;margin-bottom:1.5rem;
  line-height:1.5;
}
.offer-list{
  list-style:none;padding:0;margin:0 0 1.5rem;
}
.offer-list li{
  display:flex;align-items:flex-start;gap:.6rem;
  font-size:.95rem;color:#374151;line-height:1.6;
  margin-bottom:.75rem;
}
.offer-list li svg{
  flex-shrink:0;margin-top:2px;
}
.offer-for{
  font-size:.85rem;color:var(--muted);
  font-style:italic;
  padding-top:1rem;
  border-top:1px solid #e5e7eb;
}
.offer-cta{
  text-align:center;
  max-width:600px;
  margin:0 auto;
}
.offer-cta-text{
  font-size:1.05rem;color:#374151;
  margin-bottom:1.25rem;
  line-height:1.7;
}

/* ===== PARTENAIRES ===== */
.partners{background:var(--bg)}
.partner-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.pcard{
  background:#fff;padding:1.5rem;border-radius:12px;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  display:flex;gap:1rem;align-items:flex-start;transition:all .25s;
}
.pcard:hover{box-shadow:0 6px 24px rgba(0,0,0,.1);transform:translateY(-3px)}

/* Partner logos */
.pcard-logo{
  width:52px;height:52px;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:#fff;
  border:1.5px solid #e5e7eb;
  border-radius:10px;
  padding:6px;
  overflow:hidden;
}
.pcard-logo img{
  width:100%;height:100%;
  object-fit:contain;
}

.pcard-cat{font-size:.7rem;color:var(--blue);font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.25rem}
.pcard h4{font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:.4rem}
.pcard p{font-size:.85rem;color:var(--muted);line-height:1.6}

/* ===== RECRUTEMENT ===== */
.hiring{background:linear-gradient(135deg,var(--red),#E53935);padding:3.5rem 2rem;text-align:center}
.hiring h2{color:#fff;font-size:2rem;font-weight:800;margin-bottom:.75rem}
.hiring p{color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:2rem}
.btn-w{
  display:inline-flex;align-items:center;justify-content:center;
  background:#fff;color:var(--red);padding:1rem 2.5rem;
  border:none;border-radius:10px;font-weight:700;font-size:1rem;
  cursor:pointer;transition:transform .2s;
}
.btn-w:hover{transform:scale(1.05)}

/* ===== TEMOIGNAGES ===== */
.testimonials{background:#fff}
.testimonials .grid-3{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.75rem;
}
.testimonials .grid-3 .tcard{
  flex:0 1 calc(33.333% - 1.17rem);min-width:280px;
}
.tcard{background:var(--bg);padding:2rem;border-radius:16px;border-left:4px solid var(--blue)}
.tq{color:var(--blue);font-size:2.5rem;line-height:1;margin-bottom:.5rem;font-family:Georgia,serif}
.tcard p{color:#374151;line-height:1.7;margin-bottom:1.25rem;font-style:italic;font-size:.95rem}
.tauthor{display:flex;align-items:center;gap:.875rem}
.tav{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--green));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:.85rem;flex-shrink:0;
}
.tname{font-weight:700;color:var(--dark);font-size:.95rem}
.trole{font-size:.8rem;color:var(--muted)}

/* ===== CONTACT ===== */
.contact{position:relative;overflow:hidden}
.contact::before{
  content:'';position:absolute;inset:-20px;
  background:url(img/equipe-contact.png) center/cover no-repeat;
  filter:blur(3px);z-index:0;
}
.contact::after{
  content:'';position:absolute;inset:0;
  background:rgba(255,255,255,0.72);z-index:0;
}
.contact .wrap{position:relative;z-index:1}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;max-width:1000px;margin:0 auto}
.contact-info h3{font-size:1.5rem;font-weight:700;margin-bottom:1.5rem}
.info-item{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.25rem}
.info-icon{
  width:42px;height:42px;border-radius:10px;background:var(--blue);
  display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;
}
.info-l{font-weight:600;color:var(--dark);font-size:.9rem}
.info-v{font-size:.9rem;color:var(--muted)}
.info-v a{color:var(--muted);transition:color .2s}
.info-v a:hover{color:var(--blue)}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

form input,form textarea{
  width:100%;padding:.875rem 1rem;
  border:2px solid #e5e7eb;border-radius:10px;
  font-family:inherit;font-size:.95rem;margin-bottom:1rem;
  outline:none;transition:border-color .2s;
  background:#fff;
}
form input:focus,form textarea:focus{border-color:var(--blue)}
form textarea{height:120px;resize:vertical}
.btn-send{
  width:100%;
  background:linear-gradient(135deg,var(--blue),#1976D2);color:#fff;
  padding:1rem;border:none;border-radius:10px;
  font-weight:700;font-size:1rem;cursor:pointer;transition:all .25s;
}
.btn-send:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(21,101,192,.3)}

/* ===== FORM FEEDBACK ===== */
.honeypot-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
  overflow:hidden;
}
.form-feedback{
  display:none;
  margin-top:1rem;
  padding:1rem 1.25rem;
  border-radius:10px;
  font-size:.95rem;
  line-height:1.5;
  border:2px solid transparent;
}
.form-feedback.visible{display:block}
.form-feedback.success{
  background:#E8F5E9;
  border-color:#2E7D32;
  color:#1B5E20;
}
.form-feedback.error{
  background:#FFEBEE;
  border-color:#C62828;
  color:#B71C1C;
}
.btn-send:disabled{
  opacity:0.7;
  cursor:not-allowed;
  transform:none !important;
}

/* ===== FOOTER ===== */
footer{background:var(--dark);color:#fff;padding:3rem 2rem}
.footer-i{max-width:1200px;margin:0 auto}
.footer-top{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:2rem;
  margin-bottom:2rem;padding-bottom:2rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-logo .logo-name{font-size:1.2rem}
.footer-desc{color:rgba(255,255,255,.6);font-size:.9rem;margin-top:.75rem;line-height:1.6}
.footer-col h4{
  font-size:.85rem;font-weight:700;color:rgba(255,255,255,.5);
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:1rem;
}
.footer-col a{display:block;color:rgba(255,255,255,.7);font-size:.9rem;margin-bottom:.6rem;transition:color .2s}
.footer-col a:hover{color:var(--yellow)}
.footer-bot{
  display:flex;justify-content:space-between;align-items:center;
  font-size:.85rem;color:rgba(255,255,255,.4);flex-wrap:wrap;gap:.5rem;
}
.footer-mitizy{color:var(--yellow);font-weight:600;transition:opacity .2s}
.footer-mitizy:hover{opacity:.8}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:968px){
  .hero h1{font-size:2.8rem}
  .nav-links{gap:1rem}
  .nav-links a{font-size:.85rem}
  .partner-grid{grid-template-columns:repeat(2,1fr)}
}

/* Mobile */
@media(max-width:768px){
  /* Nav */
  .hamburger{display:flex}
  .nav-links{
    display:none;
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    background:#fff;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2rem;
    z-index:105;
  }
  .nav-links.nav-open{display:flex}
  .nav-links a{
    display:block;
    font-size:1.2rem;
    color:var(--dark);
    font-weight:600;
  }
  .nav-links .btn-cta{
    padding:.9rem 2.5rem;
    font-size:1rem;
  }

  /* Hero */
  .hero{padding:3rem 1.5rem 2.5rem}
  .hero h1{font-size:2.2rem}
  .hero p{font-size:1rem}
  .hero-btns{flex-direction:column;align-items:center}
  .btn-main,.btn-out{width:100%;max-width:320px;text-align:center}
  .stats{gap:2rem}

  /* Banner */
  .banner{padding:2rem 1.5rem}
  .banner-i{flex-direction:column;text-align:center}
  .banner-h{font-size:1.2rem}
  .btn-y{width:100%;max-width:320px}

  /* Sections */
  section{padding:3rem 1.5rem}
  h2.sec{font-size:1.75rem}
  .sec-sub{font-size:.95rem;margin-bottom:2rem}

  /* Services */
  .grid-3{grid-template-columns:1fr;gap:1.25rem}

  /* Avantages */
  .plus-section{padding:3rem 1.5rem}
  .plus-i h2{font-size:1.75rem}
  .plus-i p{font-size:1rem}
  .plus-badges{gap:.6rem}
  .pbadge{font-size:.8rem;padding:.5rem 1rem}

  /* Offres */
  .offer-grid{grid-template-columns:1fr;gap:1.25rem}
  .offer-card{padding:2rem 1.5rem}
  .offer-card h3{font-size:1.25rem}

  /* Partenaires */
  .partner-grid{grid-template-columns:1fr;gap:1rem}

  /* Recrutement */
  .hiring{padding:3rem 1.5rem}
  .hiring h2{font-size:1.5rem}

  /* Contact */
  .contact-grid{grid-template-columns:1fr;gap:2rem}
  .form-row{grid-template-columns:1fr}

  /* Footer */
  .footer-top{grid-template-columns:1fr;gap:2rem}
  .footer-bot{flex-direction:column;text-align:center}
}

/* ===== LEGAL PAGES ===== */
.legal-hero{
  background:linear-gradient(135deg,#E3F2FD 0%,#E8F5E9 50%,#FFF8E1 100%);
  padding:6rem 2rem 3rem;text-align:center;
}
.legal-hero h1{font-size:2.5rem;font-weight:900;color:var(--dark);margin-bottom:.5rem}
.legal-hero p{color:var(--muted);font-size:1.05rem}

.legal-content{
  max-width:800px;margin:0 auto;padding:3rem 2rem 4rem;
}
.legal-section{margin-bottom:2.5rem}
.legal-section h3{
  font-size:1.2rem;font-weight:700;color:var(--dark);
  margin-bottom:.75rem;padding-bottom:.5rem;
  border-bottom:2px solid var(--blue);display:inline-block;
}
.legal-section p{
  color:#374151;line-height:1.8;font-size:.95rem;margin-bottom:.75rem;
}
.legal-section ul{
  list-style:none;padding:0;margin-bottom:.75rem;
}
.legal-section ul li{
  color:#374151;line-height:1.8;font-size:.95rem;
  padding-left:1.25rem;position:relative;margin-bottom:.35rem;
}
.legal-section ul li::before{
  content:'';position:absolute;left:0;top:.65em;
  width:6px;height:6px;background:var(--blue);border-radius:50%;
}
.legal-section a{color:var(--blue);font-weight:500;transition:opacity .2s}
.legal-section a:hover{opacity:.7}

.cgv-download{
  text-align:center;padding:3rem 2rem 4rem;
  max-width:600px;margin:0 auto;
}
.cgv-download p{
  color:#374151;line-height:1.8;font-size:1rem;margin-bottom:1.5rem;
}
.cgv-download .btn-main{
  margin-bottom:2rem;gap:.5rem;
}
.cgv-contact{
  background:var(--bg);border-radius:12px;padding:2rem;
  text-align:left;
}
.cgv-contact h3{
  font-size:1.1rem;font-weight:700;color:var(--dark);margin-bottom:1rem;
}
.cgv-contact ul{list-style:none;padding:0}
.cgv-contact ul li{
  color:#374151;font-size:.95rem;line-height:1.8;
  padding-left:1.25rem;position:relative;margin-bottom:.25rem;
}
.cgv-contact ul li::before{
  content:'';position:absolute;left:0;top:.65em;
  width:6px;height:6px;background:var(--blue);border-radius:50%;
}
.cgv-contact a{color:var(--blue);font-weight:500;transition:opacity .2s}
.cgv-contact a:hover{opacity:.7}

@media(max-width:768px){
  .legal-hero{padding:5rem 1.5rem 2rem}
  .legal-hero h1{font-size:1.8rem}
  .legal-content{padding:2rem 1.5rem 3rem}
  .cgv-download{padding:2rem 1.5rem 3rem}
}

/* ===== PRESENTATION PAGE ===== */

/* Nav active link */
.nav-active{color:var(--blue) !important;font-weight:700 !important}

/* Breadcrumb */
.breadcrumb{
  padding:1rem 2rem;background:var(--bg);
  font-size:.85rem;
  border-bottom:none;border-image:none;
  box-shadow:none;position:static;
}
.breadcrumb-i{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;gap:.5rem;
}
.breadcrumb a{color:var(--blue);font-weight:500;transition:color .2s}
.breadcrumb a:hover{color:var(--green)}
.breadcrumb-sep{color:var(--muted)}
.breadcrumb-current{color:var(--dark);font-weight:600}

/* Hero presentation variant */
.hero-pres{padding:4rem 2rem 3.5rem}
.hero-pres h1{font-size:2.75rem}

/* History article */
.history-article{
  max-width:800px;margin:0 auto 3rem;
}
.history-article p{
  color:#374151;line-height:1.8;font-size:.98rem;
  margin-bottom:1.25rem;
}

/* Presentation timeline */
.pres-timeline{
  position:relative;max-width:800px;margin:0 auto;padding:2rem 0;
}
.pres-timeline::before{
  content:'';position:absolute;left:50%;top:0;bottom:0;
  width:3px;
  background:linear-gradient(to bottom,var(--blue),var(--green));
  transform:translateX(-50%);border-radius:2px;
}
.pres-timeline-item{
  position:relative;margin-bottom:2.5rem;
  display:flex;align-items:flex-start;
}
.pres-timeline-item:last-child{margin-bottom:0}
.pres-timeline-item:nth-child(odd){
  flex-direction:row;padding-right:calc(50% + 2rem);text-align:right;
}
.pres-timeline-item:nth-child(even){
  flex-direction:row-reverse;padding-left:calc(50% + 2rem);text-align:left;
}
.pres-timeline-dot{
  position:absolute;left:50%;top:.35rem;
  width:16px;height:16px;background:#fff;
  border:3px solid var(--blue);border-radius:50%;
  transform:translateX(-50%);z-index:2;
  box-shadow:0 2px 8px rgba(21,101,192,.2);
}
.pres-timeline-item:nth-child(even) .pres-timeline-dot{
  border-color:var(--green);
  box-shadow:0 2px 8px rgba(46,125,50,.2);
}
.pres-timeline-year{
  font-size:1.1rem;font-weight:900;color:var(--blue);margin-bottom:.25rem;
}
.pres-timeline-item:nth-child(even) .pres-timeline-year{color:var(--green)}
.pres-timeline-text{
  font-size:.95rem;color:var(--muted);line-height:1.6;
}

/* Team section */
.pres-team-section{background:var(--bg)}

/* Team highlight block */
.pres-team-highlight{
  max-width:800px;margin:2.5rem auto 0;
  background:#fff;border-radius:16px;padding:2rem 2.5rem;
  border-left:4px solid var(--blue);
  box-shadow:0 4px 20px rgba(0,0,0,.06);
}
.pres-team-highlight p{
  color:#374151;line-height:1.8;font-size:.98rem;
}

/* Stats on dark background */
.stats-pres{
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:2rem;
}
.stat-n-light{
  background:none !important;
  -webkit-background-clip:unset !important;
  -webkit-text-fill-color:var(--yellow) !important;
  background-clip:unset !important;
  color:var(--yellow);
}
.stat-l-light{
  color:rgba(255,255,255,.8) !important;
}

/* Localisation section */
.pres-localisation-section{background:var(--bg)}
.pres-loc-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
  max-width:1000px;margin:0 auto;align-items:start;
}
.pres-loc-info h3{
  font-size:1.5rem;font-weight:700;color:var(--dark);margin-bottom:1.5rem;
}
.pres-loc-map{
  border-radius:16px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.pres-loc-map iframe{
  width:100%;height:320px;border:0;
}

/* ===== PRESENTATION RESPONSIVE ===== */
@media(max-width:968px){
  .hero-pres h1{font-size:2.4rem}
}

@media(max-width:768px){
  .breadcrumb{padding:.75rem 1.5rem}

  .hero-pres{padding:3rem 1.5rem 2.5rem}
  .hero-pres h1{font-size:2rem}

  .history-article p{font-size:.95rem}

  /* Timeline mobile: single column */
  .pres-timeline::before{left:1rem}
  .pres-timeline-item:nth-child(odd),
  .pres-timeline-item:nth-child(even){
    flex-direction:row;padding-left:3rem;padding-right:0;text-align:left;
  }
  .pres-timeline-dot{left:1rem}

  .pres-team-highlight{padding:1.5rem}

  .pres-loc-grid{grid-template-columns:1fr;gap:2rem}
}

@media(max-width:400px){
  .hero-pres h1{font-size:1.7rem}
}

/* Small mobile */
@media(max-width:400px){
  .hero h1{font-size:1.8rem}
  .badge{font-size:.75rem;padding:.35rem .9rem}
  .stat-n{font-size:1.6rem}
  .logo-name{font-size:1.1rem}
  .logo-img{height:44px}
}
