@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root{--navy:#00363b;--navy-deep:#002f34;--cyan:#39bdca;--lime:#e4f238;--white:#fff;--ink:#063b40;--soft:#f6faf9;--radius:28px;--shadow:0 18px 50px rgba(0,54,59,.13)}
*{box-sizing:border-box}html{scroll-behavior:smooth;overflow-x:clip}body{margin:0;color:var(--ink);font-family:Montserrat,Arial,sans-serif;line-height:1.45;background:#fff;overflow-x:clip;max-width:100%}img{display:block;max-width:100%}a{color:inherit;text-decoration:none}button,input,textarea{font:inherit}.shell{width:min(1120px,calc(100% - 48px));margin-inline:auto}

/* REPÈRE VALIDÉ — header (toutes pages). Ne pas recaler sans demande.
   106px · logo 72px · nav .97rem · gap 88px · padding logo 80px
   Contact lime 11px 24px · pictos 38×38 fond cyan boutons, icônes #fff, hors wrapper Contact
   zoom ≥ 110% : JS .header--slim = cache Contact + pictos, garde les 4 liens
   burger (.header--compact) seulement si les 4 liens ne rentrent plus */
.site-header{
  height:106px;
  background:#002c32;
  color:#fff;
  position:sticky;
  top:0;
  z-index:100;
}
.nav-row{
  height:106px;
  width:100%;
  margin:0;
  padding:0 48px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  grid-template-areas:"nav-left brand nav-right";
  align-items:center;
  column-gap:0;
}
.brand-mark{
  grid-area:brand;
  display:grid;
  place-items:center;
  height:72px;
}
.brand-mark img,
.brand-mark svg{
  height:72px;
  width:auto;
  display:block;
}
.nav-group{
  display:flex;
  align-items:center;
  text-transform:uppercase;
  font-size:.97rem;
  font-weight:700;
  letter-spacing:.08em;
  line-height:1;
}
.nav-group a{
  color:#fff;
  white-space:nowrap;
  transition:color .2s;
}
.nav-group a:hover,
.nav-group a[aria-current=page]{color:var(--lime)}
.nav-group--left{
  grid-area:nav-left;
  justify-content:flex-end;
  gap:88px;
  padding-right:80px;
  min-width:0;
}
.nav-group--right{
  grid-area:nav-right;
  justify-content:flex-start;
  gap:88px;
  padding-left:80px;
  min-width:0;
}
.nav-contact{
  background:var(--lime);
  color:#002c32!important;
  border-radius:99px;
  padding:11px 24px;
  letter-spacing:.08em;
  line-height:1;
}
.nav-group--right .nav-contact{margin-left:0}
.nav-contact:hover{color:#002c32!important;filter:brightness(1.06)}
.nav-socials{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:8px;
}
.nav-socials a{
  width:38px;
  height:38px;
  border-radius:9px;
  background:var(--cyan);
  color:#fff!important;
  display:grid;
  place-items:center;
  text-transform:none;
  letter-spacing:0;
  overflow:hidden;
  transition:transform .2s,box-shadow .2s;
}
.nav-socials a:hover{color:#fff!important;filter:none;transform:scale(1.06);box-shadow:0 0 12px rgba(228,242,56,.85)}
.nav-socials svg{width:32px;height:32px;display:block}
.menu-toggle,
.mobile-nav{display:none}
.menu-toggle{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px;
  height:40px;
  padding:0;
  background:none;
  border:0;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin-left:auto;
  background:var(--lime);
}
.mobile-nav{
  position:absolute;
  top:106px;
  inset-inline:0;
  background:#002c32;
  padding:22px 24px 28px;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
  text-transform:uppercase;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
}
.mobile-nav .nav-contact{display:inline-block}
.mobile-nav .nav-socials{margin-top:6px}
@media(max-width:720px){
  .nav-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    position:relative;
  }
  .brand-mark{height:56px}
  .brand-mark img,.brand-mark svg{height:56px;width:auto}
  .nav-group{display:none}
  .menu-toggle{display:flex}
  .site-header.open .mobile-nav{display:flex}
}
@media(min-width:721px){
  .site-header.header--slim .nav-group--right .nav-contact,
  .site-header.header--slim .nav-group--right .nav-socials{display:none}
  .site-header.header--compact .nav-row{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0 48px;
    position:relative;
  }
  .site-header.header--compact .nav-group{display:none}
  .site-header.header--compact .menu-toggle{display:flex}
  .site-header.header--compact.open .mobile-nav{display:flex}
}

.hero{position:relative;overflow:hidden}.hero-network{min-height:510px;color:#fff;background:linear-gradient(rgba(5,13,15,.15),rgba(5,13,15,.15)),url('/media/design/network-bg.jpg') center/cover}.hero-inner{min-height:inherit;display:grid;align-content:center;text-align:center;max-width:920px}.hero h1,.page-hero h1{font-size:clamp(2.35rem,5vw,4.75rem);line-height:1.05;margin:0 0 22px;font-weight:700}.hero h1 em,.accent-lime{font-style:normal;color:var(--lime)}.accent-cyan{color:var(--cyan)}.hero p,.page-hero p{font-size:clamp(1rem,1.7vw,1.35rem);font-weight:600;margin:0 auto 28px;max-width:790px}.hero-actions{display:flex;justify-content:center;gap:14px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;border:0;border-radius:99px;padding:12px 18px 12px 22px;font-size:.85rem;font-weight:700;cursor:pointer;transition:.2s}.btn:hover{transform:translateY(-2px)}.btn-cyan{background:var(--cyan);color:#fff}.btn-cyan:hover{transform:scale(1.055);box-shadow:0 0 12px #e4f238,0 0 28px rgba(228,242,56,.5)}.btn-lime{background:var(--lime);color:var(--navy)}.btn-dark{background:var(--navy);color:#fff}.btn-outline{border:2px solid currentColor;padding:10px 16px 10px 20px;background:transparent;color:inherit}.btn-ico{width:22px;height:22px;border-radius:50%;background:#fff;display:grid;place-items:center;flex-shrink:0}.btn-ico svg{width:12px;height:12px;display:block}.btn-cyan .btn-ico{color:var(--cyan)}.btn-dark .btn-ico{color:var(--navy)}.btn-lime .btn-ico{color:var(--lime);background:var(--navy)}.btn-outline .btn-ico{background:#fff;color:var(--navy-deep)}.section-cta{text-align:center;margin:34px 0 0}.section{padding:90px 0;position:relative;overflow:hidden}.section-white{background:#fff}.section-lime{background:var(--lime)}.section-cyan{background:var(--cyan)}.section-dark{background:var(--navy-deep);color:#fff}.section-network{background:linear-gradient(rgba(0,47,52,.86),rgba(0,47,52,.9)),url('/media/design/network-bg.jpg') center/cover;color:#fff}.section-head{text-align:center;margin:0 auto 52px;max-width:820px}.section-head h2,.section h2{font-size:clamp(2rem,4vw,3.35rem);line-height:1.08;margin:0 0 18px}.section-head p{margin:0;font-weight:500}.kicker{text-transform:uppercase;letter-spacing:.14em;font-size:.72rem;font-weight:800;color:var(--cyan)}
.three-grid,.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}.line-card{border:3px solid var(--navy);border-radius:12px;padding:34px 25px 28px;text-align:center;position:relative;background:rgba(255,255,255,.05)}.line-card .icon{font-size:2.6rem;display:block;margin-bottom:15px}.line-card h3{font-size:1.22rem;margin:0 0 10px}.line-card p{font-size:.9rem;margin:0}.split{display:grid;grid-template-columns:1.1fr .9fr;align-items:center;gap:64px}.mascot{max-height:360px;margin:auto}.steps{display:flex;align-items:center;justify-content:center;gap:18px;margin:34px 0}.step{text-align:center;font-weight:700}.step .bubble{width:76px;height:76px;border:3px solid var(--navy);border-radius:18px;display:grid;place-items:center;font-size:2rem;margin:0 auto 8px}.arrow{font-size:2rem}.info-box{background:var(--lime);color:var(--navy);padding:34px;border-radius:25px}.info-box h3{font-size:1.45rem;margin-top:0}.numbered{counter-reset:item;padding:0;list-style:none}.numbered li{counter-increment:item;margin:17px 0;font-size:.9rem}.numbered li:before{content:'0' counter(item) '. ';font-weight:800}
.offer-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:900px;margin:0 auto}.offer-card{padding:38px;border-radius:28px;color:var(--navy);box-shadow:var(--shadow)}.offer-card--lime{background:var(--lime)}.offer-card--cyan{background:var(--cyan)}.offer-card h3{text-transform:uppercase;text-align:center;margin:0}.offer-card .sub{text-align:center;font-weight:700;margin:0 0 20px}.check-list{list-style:none;padding:0;margin:20px 0}.check-list li{margin:10px 0;padding-left:24px;position:relative}.check-list li:before{content:'✓';position:absolute;left:0;color:inherit;font-weight:900}.check-list.compact li{margin:7px 0}.architecture{display:grid;grid-template-columns:1fr 140px 1fr;align-items:stretch;gap:18px}.architecture .connector{text-align:center;font-weight:700;position:relative;display:flex;flex-direction:column;justify-content:center;gap:4px;padding:0 8px}.architecture .connector:before{content:'';position:absolute;left:50%;top:12px;bottom:12px;border-left:2px dashed rgba(255,255,255,.7);transform:translateX(-50%);z-index:0}.architecture .connector>*{position:relative;z-index:1;background:var(--navy-deep);padding:2px 0}.architecture .connector span{display:block;font-size:.72rem;font-weight:500}.arch-card{padding:28px 26px;border-radius:28px;color:var(--navy)}.arch-card h3{margin:0;font-size:1.15rem}.arch-card>p{margin:0 0 14px;font-weight:600}.spec-list{list-style:none;padding:0;margin:0}.spec-list li{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:7px 0;font-size:.82rem;font-weight:600}.tag{display:inline-block;background:var(--navy);color:#fff;padding:3px 7px;border-radius:4px;font-size:.62rem;font-weight:700;letter-spacing:.02em}.partner-row{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}.partner-row img{max-width:135px;max-height:52px;object-fit:contain;filter:grayscale(1);opacity:.8}
.page-hero{padding:100px 0;text-align:center;background:#fff}.page-hero h1{font-size:clamp(2.4rem,5vw,4rem)}.pill-row{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}.pill{background:var(--lime);padding:7px 15px;border-radius:99px;text-transform:uppercase;font-weight:800;font-size:.72rem}.cards-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}.tech-card{padding:32px;border-radius:26px;background:var(--cyan)}.tech-card:nth-child(even){background:var(--lime)}.tech-card h3{font-size:1.45rem;margin:0 0 12px}.tech-card ul{margin:0;padding-left:18px}.data-card{background:#fff;border-radius:28px;padding:35px;color:var(--navy);box-shadow:var(--shadow)}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:45px 34px}.member{text-align:center}.member-photo{height:280px;display:flex;align-items:flex-end;justify-content:center;position:relative}.member-photo:before{content:'';position:absolute;width:190px;height:210px;background:var(--lime);border-radius:48% 52% 35% 65%;transform:rotate(-9deg)}.member img{height:270px;position:relative;object-fit:contain}.member h3{margin:14px 0 3px;text-transform:uppercase}.member p{margin:0}.timeline{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;position:relative}.timeline-card{border:3px solid #fff;border-radius:16px;padding:25px;text-align:center}.timeline-card strong{font-size:1.5rem;color:var(--lime)}.quote-band{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:50px}.polaroid{background:#fff;padding:18px 18px 55px;box-shadow:var(--shadow);transform:rotate(-5deg)}.quote{font-size:1.65rem;font-style:italic;text-align:center}
.contact-section{padding:80px 0}.contact-card{background:var(--cyan);border-radius:34px;padding:48px 54px;display:grid;grid-template-columns:.9fr 1.1fr;gap:42px;position:relative}.contact-copy img{width:280px;margin-top:25px}.contact__form{background:transparent!important;padding:0!important;box-shadow:none!important;display:grid;gap:12px}.form-group{margin:0!important}.form-group label{position:absolute;width:1px;height:1px;overflow:hidden}.form-group input,.form-group textarea{width:100%;border:0;border-radius:14px;background:#fff;padding:14px 17px;color:var(--navy);outline:0}.form-group textarea{min-height:120px;resize:vertical}.contact__form .btn{width:100%;background:var(--navy);color:#fff}.form-note{font-size:.7rem;text-align:center}.alert{padding:12px;border-radius:10px;background:#fff}.contact__form--success{align-content:center;text-align:center}.form-success-icon{font-size:2rem}
.site-footer{background:var(--navy-deep);color:#fff;padding:58px 0 25px}.footer-grid{display:grid;grid-template-columns:1.3fr 1fr .8fr;gap:60px}.footer-brand>a{color:var(--lime);font-size:1.8rem;line-height:.8;font-weight:800}.footer-brand>a span{margin-left:26px}.footer-brand p{font-size:.78rem}.footer-grid nav{display:grid;gap:4px;font-size:.85rem}.socials strong{font-size:.8rem}.socials div{display:flex;gap:12px;margin-top:12px}.socials a{background:var(--cyan);width:32px;height:32px;border-radius:7px;display:grid;place-items:center;color:#fff}.socials a svg{width:16px;height:16px;display:block}.footer-bottom{text-align:center;font-size:.68rem;margin-top:40px}.footer-bottom span{color:var(--lime)}
.plexus{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:0}.section>*:not(.plexus),.hero>*:not(.plexus){position:relative;z-index:1}.reveal{opacity:0;transform:translateY(24px);transition:.7s ease}.reveal.is-visible{opacity:1;transform:none}
@media(max-width:720px){.shell{width:min(100% - 32px,1120px)}.section{padding:68px 0}.split,.contact-card,.quote-band{grid-template-columns:1fr}.three-grid,.feature-grid,.team-grid{grid-template-columns:1fr 1fr}.architecture{grid-template-columns:1fr}.architecture .connector{padding:10px}.offer-grid,.cards-2{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}.contact-copy img{max-width:220px}.page-hero{padding:75px 0}}
@media(max-width:560px){.hero-network{min-height:580px}.hero-actions{flex-direction:column;align-items:center}.three-grid,.feature-grid,.team-grid,.timeline,.footer-grid{grid-template-columns:1fr}.section-head{text-align:left}.steps{gap:8px}.step .bubble{width:58px;height:58px}.arrow{font-size:1.2rem}.contact-card{padding:34px 22px}.offer-card{padding:28px}.site-footer{text-align:center}.socials div{justify-content:center}.partner-row{justify-content:center}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.plexus{display:none}.btn-cyan:hover,.nav-socials a:hover{transform:none}}

/* REPÈRE VALIDÉ — hero accueil (desktop ~1440×900 @ 100%). Ne pas recaler.
   80vh · copy padding-top calc(36px + 16vh)
   h1 clamp(2.35rem,4.8vw,4rem) mb 28px
   sous-titre clamp(1.75rem,3.2vw,2.55rem) mb 42px
   boutons 15px 24px 15px 28px / 1rem · hover cyan = scale + neon lime (pas translateY)
   mascotte uniquement dans la card formulaire contact */
.home-page .shell{width:min(1320px,calc(100% - 40px))}
.home-page .hero-network{
  min-height:80vh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.home-page .hero-inner{
  min-height:0;
  max-width:none;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-align:center;
  padding:calc(36px + 16vh) 0 12px;
  position:relative;
  z-index:2;
}
.home-page .hero-copy{
  max-width:1080px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.home-page .hero h1{font-size:clamp(2.35rem,4.8vw,4rem);margin:0 0 28px}
.home-page .hero p{font-size:clamp(1.75rem,3.2vw,2.55rem);font-weight:600;margin:0 auto 42px;max-width:920px}
.home-page .hero-actions{gap:18px}
.home-page .hero-actions .btn{padding:15px 24px 15px 28px;font-size:1rem}
.home-page .hero-actions .btn-ico{width:26px;height:26px}
.home-page .hero-actions .btn-ico svg{width:14px;height:14px}
@media(min-width:1400px){
  .home-page .hero-inner{
    min-height:80vh;
    padding:calc(36px + 16vh) 0 72px;
  }
}
.home-page #solution{padding:108px 0 80px;overflow:visible}
.home-page #solution > .shell{width:80%;max-width:none}
.home-page #solution .section-head{margin-bottom:8px;max-width:none}
.home-page #solution .section-head h2{font-size:clamp(2rem,3.2vw,2.75rem);margin-bottom:28px;white-space:nowrap}
.home-page #solution .section-head p{font-size:clamp(1.12rem,1.5vw,1.28rem);font-weight:500;line-height:1.55;max-width:100%;margin-inline:auto}
.home-page #solution .three-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,340px));
  justify-content:center;
  column-gap:72px;
  row-gap:36px;
  width:100%;
  max-width:none;
  margin:56px auto 0;
  padding-top:36px;
}
.home-page #solution .line-card{
  background:transparent;
  box-shadow:none;
  overflow:visible;
  aspect-ratio:auto;
  width:min(340px,100%);
  max-width:100%;
  min-height:0;
  height:auto;
  max-height:250px;
  padding:54px 22px 42px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:5px solid #002c32;
  border-radius:18px;
}
.home-page #solution .line-card p{font-size:clamp(1.08rem,1.3vw,1.22rem);font-weight:600;line-height:1.35;max-width:none;color:#002c32;text-wrap:balance}
.home-page #solution .line-card .icon{
  position:absolute;
  top:-4%;
  left:50%;
  transform:translate(-50%,-50%);
  width:auto;
  height:72px;
  margin:0;
  padding:0 4px;
  color:#002c32;
  background:var(--lime);
  box-shadow:-18px 0 0 var(--lime),18px 0 0 var(--lime);
  overflow:visible;
}
.home-page #solution .line-card .icon--door{height:88px}
.home-page #solution .section-cta{margin:calc(42px + 10vh) 0 0}
.home-page #solution .section-cta .btn{padding:15px 24px 15px 28px;font-size:1rem}
.home-page #solution .section-cta .btn-ico{width:26px;height:26px}
.home-page #solution .section-cta .btn-ico svg{width:14px;height:14px}
@media(max-width:1100px){
  .home-page #solution .section-head h2{white-space:normal}
  .home-page #solution .three-grid{
    grid-template-columns:1fr;
    max-width:340px;
    gap:40px;
  }
  .home-page .offers-teaser .offer-grid{gap:36px}
  .arch-section .section-head h2,
  .arch-section .arch-card h3{white-space:normal}
  .arch-section .architecture{
    grid-template-columns:1fr;
    width:100%;
  }
  .arch-section .arch-card{width:auto;max-width:100%}
  .arch-section .architecture .connector{padding:18px 0}
  .arch-section .architecture .connector:before{
    left:8%;
    right:8%;
    top:50%;
    bottom:auto;
    border-left:0;
    border-top:2px dashed rgba(255,255,255,.7);
    transform:none;
  }
}
.home-page .binary-deco,
.offers-page .binary-deco{
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:min(42vw,540px);
  height:100%;
  z-index:0;
  pointer-events:none;
  background:url('/media/design/binary-fade.svg?v=3') top right / 100% auto repeat-y;
  opacity:.55;
  -webkit-mask-image:linear-gradient(to left,#000 18%,transparent 92%);
  mask-image:linear-gradient(to left,#000 18%,transparent 92%);
}
.home-page .lead{margin-top:18px;font-size:1.05rem}
.how-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.home-page .how-section{padding:calc(168px + 5vh) 0 80px;overflow:visible;color:#000}
.home-page .how-layout{
  display:grid;
  grid-template-columns:7fr 3fr;
  gap:48px 40px;
  align-items:center;
}
.home-page .how-copy{text-align:center}
.home-page .how-copy h2{
  font-size:clamp(2rem,3.4vw,2.85rem);
  color:#000;
  margin:0 0 18px;
}
.home-page .how-copy > p:not(.how-cta){
  margin:0 auto 36px;
  max-width:52ch;
  font-size:clamp(1.02rem,1.5vw,1.22rem);
  font-weight:500;
  line-height:1.45;
  color:#000;
}
.home-page .how-section .steps{
  margin:0 0 36px;
  justify-content:center;
  gap:36px;
  color:#002c32;
  width:100%;
  max-width:none;
}
.home-page .how-section .step{font-size:1.05rem;font-weight:800}
.home-page .how-section .step .bubble{
  width:78px;
  height:78px;
  border:3.5px solid #002c32;
  border-radius:16px;
  background:transparent;
  color:var(--lime);
}
.home-page .how-section .step .bubble img{
  width:46px;
  height:auto;
  display:block;
}
.home-page .how-section .arrow{color:#002c32;font-size:1.85rem;font-weight:700}
.home-page .how-section .step-mascot{
  width:auto;
  height:108px;
  margin:0 auto 8px;
  mix-blend-mode:normal;
  object-fit:contain;
  filter:drop-shadow(3px 4px 0 #001214) drop-shadow(0 8px 12px rgba(0,0,0,.28));
}
.home-page .how-cta{margin:0}
.home-page .how-cta .btn{padding:15px 24px 15px 28px;font-size:1rem}
.home-page .how-section .info-box{
  border-radius:36px;
  padding:36px 34px 32px;
  text-align:center;
  color:#000;
}
.home-page .how-section .info-box h3{
  font-size:clamp(1.2rem,1.8vw,1.48rem);
  line-height:1.2;
  margin:0 0 18px;
  color:#000;
}
.home-page .how-section .numbered{text-align:left;max-width:34ch;margin:0 auto}
.home-page .how-section .numbered li{font-size:.98rem;line-height:1.4;margin:16px 0;color:#000}
.home-page .how-section .numbered li:before{font-weight:800}
.home-page .fleur-lime{
  position:absolute;
  left:-58px;
  top:-80px;
  width:176px;
  height:176px;
  z-index:2;
  pointer-events:none;
}
.home-page .info-box{border-radius:22px;padding:28px 30px}
.home-page .info-box h3{font-size:1.28rem;line-height:1.2;margin:0 0 8px}
.home-page .offer-card--lime .check-list li:before{color:var(--cyan)}
.home-page .offer-card--cyan .check-list li:before{color:var(--lime)}
.home-page .offer-card h3{font-size:1.35rem;margin-bottom:18px;text-transform:none;text-align:left}
.home-page .offers-teaser{padding:80px 0;background:#fff;color:#000}
.home-page .offers-teaser .section-head h2{color:#000}
.home-page .offers-teaser .section-head p{
  color:#000;
  font-size:clamp(1.12rem,1.75vw,1.45rem);
  font-weight:500;
}
.home-page .offers-teaser .offer-grid{
  max-width:760px;
  gap:127px;
  margin-inline:auto;
}
.home-page .offers-teaser .offer-card{color:#000}
.home-page .offers-teaser .offer-card h3{
  color:#000;
  font-size:clamp(1.4rem,2vw,1.7rem);
}
.home-page .offers-teaser .check-list li{
  color:#000;
  font-size:clamp(1rem,1.25vw,1.15rem);
  line-height:1.4;
}
.arch-section .section-head{max-width:none}
.arch-section .section-head h2{
  white-space:nowrap;
  font-size:clamp(2rem,3.2vw,2.75rem);
  margin-bottom:16px;
}
.arch-section .section-head p{
  font-size:clamp(.98rem,1.25vw,1.12rem);
  font-weight:500;
  line-height:1.45;
}
.arch-section .architecture{
  gap:28px;
  grid-template-columns:max-content minmax(88px,120px) max-content;
  justify-content:center;
  width:fit-content;
  max-width:100%;
  margin-inline:auto;
}
.arch-section .arch-card{
  width:max-content;
  padding:28px 36px;
}
.arch-section .arch-card h3{
  font-size:clamp(1.28rem,1.8vw,1.5rem);
  text-transform:none;
  white-space:nowrap;
}
.arch-section .arch-card > p{
  font-size:clamp(1.02rem,1.4vw,1.18rem);
  margin-bottom:16px;
}
.arch-section .spec-list li{
  font-size:clamp(1rem,1.35vw,1.18rem);
  margin:10px 0;
}
.arch-section .tag{
  font-size:.72rem;
  padding:4px 8px;
}
.home-page .offer-card--lime .check-list li:before{color:#2eb0bc;font-size:1.05rem;font-weight:900}
.home-page .offer-card--cyan .check-list li:before{color:#dce84a;font-size:1.05rem;font-weight:900}
.home-page .section-dark{padding:72px 0}
.home-page .section-head{max-width:880px}
.home-page .partners-section{padding:56px 0}
.home-page .partners-section .section-head{margin-bottom:80px}
.home-page .partners-section .section-head h2{color:#000}
.home-page .partner-marquee{
  overflow:hidden;
  mask-image:linear-gradient(to right,transparent 0,#000 8%,#000 92%,transparent 100%);
  -webkit-mask-image:linear-gradient(to right,transparent 0,#000 8%,#000 92%,transparent 100%);
}
.home-page .partner-track{
  display:flex;
  width:max-content;
  animation:partner-scroll 32s linear infinite;
}
.home-page .partner-marquee:hover .partner-track,
.home-page .partner-marquee:focus-within .partner-track{animation-play-state:paused}
.home-page .partner-set{
  display:flex;
  align-items:center;
  gap:72px;
  padding-inline-end:72px;
  flex-shrink:0;
}
.home-page .partner-set a{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.home-page .partner-set img{
  display:block;
  width:auto;
  height:86px;
  max-width:205px;
  max-height:86px;
  object-fit:contain;
  filter:none;
  opacity:1;
  transition:transform .2s;
}
.home-page .partner-set a:hover img{transform:scale(1.04)}
@keyframes partner-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media(prefers-reduced-motion:reduce){
  .home-page .partner-track{animation:none}
  .home-page .partner-set:last-child{display:none}
  .home-page .partner-set{flex-wrap:wrap;justify-content:center;padding-inline-end:0;gap:40px}
  .home-page .partner-marquee{mask-image:none;-webkit-mask-image:none;overflow:visible}
}
.home-page .footer-grid{gap:36px 48px}
.home-page .form-note{display:none}
.contact-copy img{filter:none}
.home-page .contact__form .btn{width:100%}
@media(max-width:640px){.how-grid{grid-template-columns:1fr}}
@media(max-width:720px){
  .home-page .shell{width:calc(100% - 32px);max-width:100%}
  .home-page .hero-network{min-height:0;overflow:hidden}
  .home-page .hero-inner{min-height:0;padding:40px 0 48px}
  .home-page .hero h1{font-size:clamp(1.7rem,8vw,2.35rem);overflow-wrap:break-word}
  .home-page .hero p{font-size:clamp(1.05rem,4.6vw,1.35rem);margin:0 auto 28px}
  .home-page .hero-actions{flex-direction:column;align-items:center;gap:12px}
  .home-page .hero-actions .btn{width:100%;max-width:320px}
  .home-page .btn{max-width:100%;white-space:normal;height:auto}
  .home-page h1,.home-page h2,.home-page p,.home-page li{overflow-wrap:break-word}
  .home-page #solution{padding:64px 0 48px}
  .home-page #solution > .shell{width:calc(100% - 32px)}
  .home-page #solution .section-head h2,.arch-section .section-head h2{white-space:normal}
  .home-page #solution .three-grid{grid-template-columns:1fr;max-width:340px;gap:40px;justify-content:center;width:100%}
  .home-page #solution .line-card{min-height:0;aspect-ratio:auto;width:100%;max-width:340px;max-height:none}
  .home-page #solution .section-cta{margin:36px 0 0}
  .home-page .binary-deco,.offers-page .binary-deco{display:none}
  .home-page .fleur-lime{display:none}
  .home-page .how-section{padding:72px 0 56px;overflow:hidden}
  .home-page .how-layout{grid-template-columns:1fr}
  .home-page .how-section .steps{
    flex-direction:column;
    flex-wrap:nowrap;
    gap:10px;
    width:100%;
    max-width:100%;
  }
  .home-page .how-section .step .bubble{width:64px;height:64px}
  .home-page .how-section .step-mascot{height:72px}
  .home-page .how-section .arrow{transform:rotate(90deg);font-size:1.4rem}
  .home-page .how-cta .btn{width:100%;max-width:100%}
  .home-page .offers-teaser .offer-grid{gap:24px;max-width:100%}
  .home-page .offer-card{padding:28px 22px}
  .home-page .polaroid{transform:none}
  .home-page .team-teaser .split{gap:28px}
  .home-page .team-teaser .polaroid{max-width:100%}
}
@media(max-width:560px){
  .home-page .hero-inner{padding-top:32px}
  .home-page .hero-actions{flex-direction:column;align-items:center}
}

/* Notre solution */
.benefit-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:28px 20px;max-width:1020px;margin:56px auto 0}
.benefit-strip>div{text-align:center;font-size:.92rem;line-height:1.3;font-weight:400;color:#000}
.benefit-strip>div strong{font-weight:400}
.benefit-ico{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  margin:0 auto 14px;
  background:var(--cyan);
  border-radius:16px;
}
.benefit-ico img{
  width:42px;
  height:42px;
  object-fit:contain;
}
.solution-page .page-hero{padding:88px 0 72px;color:#000}
.solution-page .page-hero h1{
  color:#000;
  font-size:clamp(2.2rem,4.2vw,3.35rem);
  margin:0 0 22px;
}
.solution-page .page-hero p{
  color:#000;
  font-size:clamp(1.05rem,1.55vw,1.28rem);
  font-weight:500;
  max-width:760px;
  margin:0 auto;
}
.solution-page .page-hero:after{display:none}
.solution-page .section-cyan:before{display:none}

.solution-duo{
  --sol-box:320px;
  position:relative;
  display:grid;
  grid-template-columns:1fr min(1120px,calc(100% - 48px)) 1fr;
  overflow:visible;
}
.solution-concrete{
  grid-column:1/-1;
  grid-row:1;
  z-index:1;
  overflow:visible;
  padding:96px 0 64px;
}
.solution-how{
  grid-column:1/-1;
  grid-row:2;
  z-index:1;
  overflow:visible;
  padding:80px 0 112px;
  color:#000;
}
.solution-concrete .shell,
.solution-how .shell{
  display:grid;
  grid-template-columns:1fr var(--sol-box);
  column-gap:36px;
  width:min(1120px,calc(100% - 48px));
}
.solution-concrete .section-head{
  grid-column:1/-1;
  margin-top:0;
  margin-bottom:96px;
}
.solution-concrete .section-head h2{
  color:#fff;
  font-size:clamp(2rem,3.4vw,2.85rem);
  white-space:nowrap;
}
.solution-concrete .section-head p{
  color:#fff;
  font-size:clamp(1.02rem,1.5vw,1.22rem);
  font-weight:500;
  line-height:1.45;
  max-width:54ch;
  margin-inline:auto;
}
.solution-acts{
  grid-column:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,150px));
  justify-content:start;
  gap:20px 36px;
  text-align:center;
}
.sol-act-ico{
  display:grid;
  place-items:center;
  width:68px;
  height:68px;
  margin:0 auto 12px;
  border:2.5px solid var(--cyan);
  border-radius:14px;
  background:transparent;
}
.sol-act-ico img{
  width:48px;
  height:48px;
  object-fit:contain;
}
.solution-acts h3{
  margin:0 0 6px;
  color:#fff;
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.solution-acts p{
  margin:0;
  color:#fff;
  font-size:.88rem;
  font-weight:400;
  line-height:1.35;
}
.solution-concrete__cta{
  grid-column:1;
  margin:36px 0 0;
}
.solution-concrete__cta .btn{
  padding:15px 24px 15px 28px;
  font-size:1rem;
}
.solution-orbit-stage{
  grid-column:2;
  grid-row:1;
  justify-self:end;
  align-self:end;
  position:relative;
  z-index:4;
  width:min(560px,54vw);
  aspect-ratio:520/420;
  height:auto;
  margin:0 0 48px;
  pointer-events:none;
}
.solution-orbit-halo{
  position:absolute;
  inset:0;
  z-index:1;
  transform:translateY(10%);
}
.solution-orbit-rings{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  z-index:0;
  filter:drop-shadow(2px 3px 0 #001214) drop-shadow(1px 2px 0 rgba(0,8,10,.55));
}
.orbit-ico{
  position:absolute;
  z-index:2;
  width:48px;
  height:48px;
  object-fit:contain;
  transform:translate(-50%,-50%);
  filter:drop-shadow(3px 4px 0 #001214) drop-shadow(1px 2px 0 rgba(0,8,10,.7));
}
.orbit-ico--eye{left:15.8%;top:58.1%}
.orbit-ico--shield{left:49.2%;top:31.5%}
.orbit-ico--bell{left:83.8%;top:37.7%}
.solution-orbit{
  position:absolute;
  left:65%;
  bottom:-10%;
  z-index:2;
  width:70%;
  height:auto;
  max-height:none;
  transform:translateX(-46%);
  object-fit:contain;
  mix-blend-mode:normal;
  filter:
    drop-shadow(1.6px 0 0 #fff)
    drop-shadow(-1.6px 0 0 #fff)
    drop-shadow(0 1.6px 0 #fff)
    drop-shadow(0 -1.6px 0 #fff)
    drop-shadow(4px 6px 0 #001214)
    drop-shadow(0 12px 16px rgba(0,0,0,.4));
}
.solution-steps-box{
  grid-column:2;
  grid-row:2;
  justify-self:end;
  align-self:start;
  z-index:3;
  width:var(--sol-box);
  margin:-72px 0 28px;
  border-radius:36px;
  padding:96px 32px 56px;
  text-align:center;
  color:#000;
  box-shadow:none;
}
.solution-steps-box h3{
  font-size:clamp(1.15rem,1.7vw,1.42rem);
  line-height:1.2;
  margin:0 0 24px;
  color:#000;
}
.solution-steps-box .numbered{
  text-align:left;
  max-width:34ch;
  margin:0 auto;
}
.solution-steps-box .numbered li{
  font-size:.95rem;
  line-height:1.45;
  margin:18px 0;
  color:#000;
}
.solution-how .how-copy{
  grid-column:1;
  text-align:left;
}
.solution-how .how-copy h2{
  color:#000;
  font-size:clamp(2rem,3.4vw,2.85rem);
  margin:0 0 18px;
}
.solution-how .how-copy > p:not(.how-cta){
  margin:0 0 40px;
  max-width:52ch;
  font-size:clamp(1.02rem,1.5vw,1.22rem);
  font-weight:500;
  line-height:1.45;
  color:#000;
}
.solution-how .steps{
  margin:0 0 44px;
  justify-content:flex-start;
  gap:28px;
  color:#002c32;
}
.solution-how .step{font-size:1.05rem;font-weight:800}
.solution-how .step .bubble{
  width:78px;
  height:78px;
  border:3.5px solid #002c32;
  border-radius:16px;
  background:transparent;
}
.solution-how .step .bubble img{
  width:46px;
  height:auto;
  display:block;
}
.solution-how .arrow{color:#002c32;font-size:1.85rem;font-weight:700}
.solution-how .step-mascot{
  width:auto;
  height:108px;
  margin:0 auto 8px;
  mix-blend-mode:normal;
  object-fit:contain;
  filter:drop-shadow(3px 4px 0 #001214) drop-shadow(0 8px 12px rgba(0,0,0,.28));
}
.solution-how .how-cta{margin:0}
.solution-how .how-cta .btn{padding:15px 24px 15px 28px;font-size:1rem}

.solution-offers{
  position:relative;
  padding:96px 0 100px;
  color:#fff;
  overflow:hidden;
  background:linear-gradient(rgba(5,13,15,.15),rgba(5,13,15,.15)),url('/media/design/network-bg.jpg') center/cover;
}
.solution-offers .shell{width:min(1280px,calc(100% - 48px))}
.solution-offers .section-head{
  max-width:880px;
  margin-bottom:56px;
}
.solution-offers .section-head h2{
  color:#fff;
  font-size:clamp(2rem,3.4vw,2.85rem);
  margin-bottom:28px;
  white-space:nowrap;
}
.solution-offers .section-head p{
  color:#fff;
  font-size:clamp(1.12rem,1.75vw,1.45rem);
  font-weight:500;
}
.solution-offers .offer-grid{
  max-width:1100px;
  gap:110px;
  margin-inline:auto;
}
.solution-offers .offer-card{
  color:#000;
  padding:28px 40px 30px;
  border-radius:28px;
}
.solution-offers .offer-card h3{
  color:#000;
  font-size:clamp(1.4rem,2vw,1.7rem);
  text-transform:none;
  text-align:left;
  margin:0 0 12px;
}
.solution-offers .check-list{margin:0}
.solution-offers .check-list li{
  color:#000;
  font-size:clamp(.95rem,1.15vw,1.08rem);
  line-height:1.35;
}
.solution-offers .offer-card--lime .check-list li:before{color:#2eb0bc;font-size:1.05rem;font-weight:900}
.solution-offers .offer-card--cyan .check-list li:before{color:#dce84a;font-size:1.05rem;font-weight:900}
.solution-offers .section-cta{margin-top:48px}
.solution-offers .section-cta .btn{padding:15px 24px 15px 28px;font-size:1rem}
.solution-why{
  color:#000;
  padding:96px 0 112px;
}
.solution-why .section-head{
  max-width:980px;
  margin-bottom:48px;
}
.solution-why .section-head h2{
  color:#000;
  font-size:clamp(2rem,3.4vw,2.85rem);
  white-space:nowrap;
  margin-bottom:28px;
}
.solution-why .section-head p{
  color:#000;
  font-size:clamp(1.08rem,1.6vw,1.28rem);
  font-weight:500;
  line-height:1.5;
  margin:0 auto 18px;
  max-width:none;
}
.solution-why .section-head .solution-why__lead{
  font-weight:800;
}
.solution-why__sketch{
  margin:0 auto 36px;
  max-width:860px;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,54,59,.12);
}
.solution-why__sketch img{
  width:100%;
  max-width:none;
  height:auto;
  margin:0;
  border-radius:0;
  box-shadow:none;
  display:block;
  object-fit:cover;
}
.solution-why__cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 48px;
  max-width:860px;
  margin:0 auto;
  text-align:center;
}
.solution-why__cols h3{
  margin:0 0 10px;
  color:#000;
  font-size:1.12rem;
  font-weight:800;
}
.solution-why__cols p{
  margin:0;
  color:#000;
  font-size:.98rem;
  font-weight:500;
  line-height:1.45;
}
@media(max-width:900px){
  .solution-duo{
    display:flex;
    flex-direction:column;
  }
  .solution-concrete{order:1;padding:72px 0 32px}
  .solution-orbit-stage{order:2;width:min(360px,86%);height:auto;margin:8px auto 0}
  .solution-how{order:3;padding:56px 0 40px}
  .solution-steps-box{order:4;width:auto;max-width:420px;margin:0 auto 48px;padding:32px 28px}
  .solution-concrete .shell,
  .solution-how .shell{display:block}
  .solution-concrete .section-head h2,
  .solution-why .section-head h2,
  .solution-offers .section-head h2{white-space:normal}
  .solution-why__cols{grid-template-columns:1fr;gap:22px}
}
@media(max-width:720px){.benefit-strip{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.benefit-strip{grid-template-columns:repeat(2,1fr);gap:28px 14px}.benefit-strip>div:last-child{grid-column:1/-1}.solution-acts{grid-template-columns:1fr;max-width:280px;margin-inline:auto;justify-content:center}.solution-how .steps{flex-direction:column;gap:10px}.solution-how .step .bubble{width:58px;height:58px}.solution-how .step-mascot{height:72px}.solution-how .arrow{font-size:1.2rem;transform:rotate(90deg)}}

/* Offres */
.offers-page .page-hero{
  padding:112px 0 96px;
}
.offers-page .page-hero h1{
  margin-bottom:36px;
}
.offers-page .page-hero p{
  margin-bottom:42px;
  font-weight:500;
  line-height:1.5;
}
.offers-page .pill-row{gap:18px}
.offers-page .pill{
  font-size:1rem;
  padding:12px 26px;
  letter-spacing:.02em;
}.offers-page #formules{
  position:relative;
  overflow:hidden;
  padding:96px 0 80px;
  color:#fff;
  background:linear-gradient(rgba(5,13,15,.15),rgba(5,13,15,.15)),url('/media/design/network-bg.jpg') center/cover;
}
.offers-page #formules .section-head{
  margin-bottom:48px;
}
.offers-page #formules .section-head h2{
  color:#fff;
  font-size:clamp(2rem,3.4vw,2.85rem);
}
.offers-page .offer-overlap{
  position:relative;
  max-width:920px;
  margin:0 auto;
  padding:12px 24px 200px;
}
.offers-page .offer-overlap:before{
  content:'';
  position:absolute;
  top:calc(40px + 21%);
  left:50%;
  right:auto;
  bottom:calc(32% - 40px);
  width:58%;
  height:auto;
  transform:translateX(-50%);
  background:#061114;
  border:4px solid #fff;
  border-radius:32px;
  z-index:0;
  pointer-events:none;
}
.offers-page .offer-overlap .offer-grid{
  position:relative;
  z-index:1;
  max-width:none;
  grid-template-columns:1fr 1fr;
  gap:12px;
  align-items:stretch;
}
.offers-page .offer-overlap .offer-card{
  color:#000;
  border-radius:28px;
  padding:20px 28px 16px;
  min-height:100%;
  box-sizing:border-box;
}
.offers-page .offer-overlap .offer-card h3{
  text-align:center;
  text-transform:uppercase;
  font-size:clamp(1.3rem,1.95vw,1.6rem);
  margin:0 0 4px;
  color:#000;
}
.offers-page .offer-overlap .offer-card .sub{
  text-align:center;
  margin:0 0 10px;
  font-size:1.15rem;
}
.offers-page .offer-overlap .check-list{gap:8px}
.offers-page .offer-overlap .check-list li{font-size:1.05rem}
.offers-page .offer-overlap .offer-card:first-child{
  z-index:1;
}
.offers-page .offer-overlap .offer-card:last-child{
  z-index:2;
  transform:translate(-10%,50%);
}
.offers-page .offer-card--cyan .check-list li:before{color:#dce84a;font-size:1.05rem;font-weight:900}
.offers-page .offer-card--lime .check-list li:before{color:#2eb0bc;font-size:1.05rem;font-weight:900}
.offers-formules__cta{
  position:absolute;
  left:12%;
  bottom:48px;
  z-index:1;
  margin:0;
  text-align:left;
}
.offers-formules__cta .btn{
  background:transparent;
  color:#fff;
  border:2.5px solid #fff;
  padding:8px 16px 8px 18px;
  font-size:.92rem;
}
.offers-formules__cta .btn:hover{
  transform:scale(1.04);
  box-shadow:0 0 18px rgba(228,242,56,.35);
}
.offers-obtain-section{overflow:hidden;padding:96px 0 88px}
.offers-obtain-section .shell{position:relative;z-index:1}
.offers-obtain-section .section-head{
  text-align:left;
  margin:0 0 56px;
  max-width:none;
}
.offers-obtain-section .section-head h2{
  color:#002c32;
  font-size:clamp(2rem,3.6vw,3.15rem);
  line-height:1.12;
  margin:0;
}
.offers-obtain-section .three-grid{
  padding-top:52px;
  gap:88px;
  align-items:stretch;
}
.offers-obtain-section .line-card{
  background:transparent;
  border:2px solid #002c32;
  border-radius:16px;
  padding:48px 26px 26px;
  text-align:left;
  overflow:visible;
  display:flex;
  flex-direction:column;
  min-height:280px;
  box-shadow:none;
}
.offers-page .offers-obtain-section .line-card .icon{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-50%);
  width:auto;
  height:82px;
  margin:0;
  padding:0 12px;
  color:#002c32;
  background:var(--lime);
  box-shadow:-18px 0 0 var(--lime),18px 0 0 var(--lime);
  overflow:visible;
  display:block;
}
.offers-page .offers-obtain-section .line-card .icon[src*="phone"]{height:88px}
.offers-obtain-section .line-card h3{
  text-align:center;
  font-size:1.32rem;
  font-weight:800;
  margin:0 0 16px;
  color:#002c32;
}
.offers-obtain-section .line-card ul{
  margin:0;
  padding-left:1.2em;
  font-size:.98rem;
  font-weight:500;
  line-height:1.45;
  color:#002c32;
  flex:1;
  min-height:0;
}
.offers-obtain-section .line-card li{margin:7px 0}
.offers-obtain-section .line-card strong{
  display:block;
  text-align:center;
  margin-top:auto;
  padding-top:22px;
  font-size:.98rem;
  font-weight:800;
  color:#002c32;
}
.offers-obtain-section .section-cta{margin:52px 0 0}
.offers-obtain-section .section-cta .btn{padding:15px 24px 15px 28px;font-size:1rem}
.offers-obtain-section .section-cta .btn-ico{width:26px;height:26px}
.offers-obtain-section .section-cta .btn-ico svg{width:14px;height:14px}
.offers-coverage{
  background:#022d33;
  padding:64px 0 160px;
  color:#fff;
}
.offers-coverage .section-head{margin:0 auto 28px;max-width:none}
.offers-coverage .section-head h2{
  color:#fff;
  font-size:clamp(1.7rem,2.8vw,2.35rem);
}
.offers-coverage .coverage{
  max-width:820px;
  margin:0 auto;
  border:2.5px solid #3dbcc8;
  border-radius:24px;
  overflow:hidden;
  background:#002e33;
}
.offers-coverage .coverage-head,
.offers-coverage .coverage-row,
.offers-coverage .coverage-cat{
  display:grid;
  grid-template-columns:1fr 132px 132px;
  align-items:center;
  column-gap:6px;
}
.offers-coverage .coverage-head{
  background:#004850;
  color:var(--cyan);
  text-transform:uppercase;
  padding:12px 28px;
  letter-spacing:.04em;
}
.offers-coverage .coverage-head span{
  font-weight:800;
  font-size:.82rem;
}
.offers-coverage .coverage-plan{text-align:center}
.offers-coverage .coverage-plan strong{
  display:block;
  font-size:.88rem;
  font-weight:800;
  color:var(--cyan);
}
.offers-coverage .coverage-plan em{
  display:block;
  margin-top:2px;
  font-style:normal;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  color:#fff;
}
.offers-coverage .coverage-cat{
  color:var(--cyan);
  font-weight:700;
  font-size:.9rem;
  background:#00383e;
  border-top:1.5px solid var(--cyan);
  padding:8px 28px;
}
.offers-coverage .coverage-row{
  border-top:1px solid #3dbcc8;
  color:#fff;
  padding:7px 28px;
}
.offers-coverage .coverage-row span{font-weight:500;font-size:.86rem}
.offers-coverage .coverage-row b{
  text-align:center;
  font-size:1.1rem;
  font-weight:500;
  color:#fff;
}
.coverage{max-width:900px;margin:auto;border:4px solid #065b63;border-radius:28px;overflow:hidden}.coverage-head,.coverage-row{display:grid;grid-template-columns:1fr 150px 150px;align-items:center}.coverage-head{background:#07525a;color:var(--cyan);padding:18px 22px;text-transform:uppercase}.coverage-row{border-top:2px solid var(--cyan);padding:8px 22px}.coverage-row strong{text-align:center;font-size:1.2rem}
@media(max-width:700px){.offer-overlap .offer-card{transform:none!important}.offer-overlap:before{display:none}.offers-page .offer-overlap{padding:0}.offers-page .offer-overlap .offer-card:first-child{padding-right:34px}.offers-formules__cta{position:relative;left:auto;bottom:auto;margin:28px 0 0;text-align:center}.offers-obtain-section .three-grid{grid-template-columns:1fr;max-width:360px;margin-inline:auto;gap:48px}.offers-obtain-section .line-card{min-height:0}.offers-coverage .coverage-head,.offers-coverage .coverage-row,.offers-coverage .coverage-cat{grid-template-columns:1fr 72px 72px;padding-inline:14px;font-size:.78rem}.offers-coverage .coverage-plan em{font-size:.65rem}.coverage-head,.coverage-row{grid-template-columns:1fr 70px 70px;font-size:.75rem;padding-inline:12px}}
.footer-lockup{display:inline-block;line-height:0}.footer-lockup img{display:block;height:96px;width:auto}
.site-footer{padding:28px 0 14px}
.footer-grid{gap:36px 48px;align-items:start}
.footer-brand p{font-size:1rem;line-height:1.4;margin:6px 0 0}
.footer-grid nav{gap:6px;font-size:1.05rem;line-height:1.35}
.socials strong{font-size:1rem}
.footer-bottom{font-size:.85rem;margin-top:52px;padding-top:8px}
.site-footer .nav-socials{
  margin-left:0;
  margin-top:10px;
}
.site-footer .nav-socials a{
  width:38px;
  height:38px;
  border-radius:9px;
  background:var(--cyan);
  color:#fff!important;
  display:grid;
  place-items:center;
}
.site-footer .nav-socials svg{width:32px;height:32px;display:block}

.firewall-section{padding:70px 0 0;overflow:visible;color:#000}
.firewall-section .section-head{margin-bottom:36px;max-width:none;width:100%}
.firewall-section .section-head h2{
  font-size:clamp(1.85rem,3.15vw,2.75rem);
  color:#000;
  white-space:nowrap;
  margin-bottom:28px;
}
.firewall-section .section-head p{
  color:#000;
  font-size:clamp(1.05rem,1.7vw,1.5rem);
  font-weight:500;
  line-height:1.45;
  max-width:72ch;
  margin-inline:auto;
}
.firewall-section .section-head p.lead{
  margin-top:28px;
  font-size:clamp(1.1rem,1.8vw,1.6rem);
  font-weight:800;
  color:#000;
  white-space:nowrap;
}
@media(max-width:1100px){
  .firewall-section .section-head h2,
  .firewall-section .section-head p.lead{white-space:normal}
}
.video-card{
  position:relative;
  width:min(760px,72%);
  aspect-ratio:543 / 331;
  margin:0 auto -138px;
  background:#fff;
  border:8px solid var(--lime);
  border-radius:28px;
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,54,59,.07);
  z-index:3!important;
}
.video-card__player{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
  border:0;
  border-radius:inherit;
}
.team-teaser{padding:72px 0 160px}.team-teaser .polaroid span{display:block;text-align:center;color:var(--navy);font:1.45rem/1.1 'Segoe Print','Comic Sans MS',cursive;margin-top:14px}.team-teaser .polaroid{padding-bottom:22px;max-width:360px}.team-teaser h2{font-size:clamp(2rem,4vw,3.2rem)}.team-teaser .split>div:last-child .btn{margin-top:8px}
.contact-card{
  grid-template-rows:auto 1fr;
  padding:40px 64px 44px;
  gap:32px 56px;
  color:#000;
  overflow:visible;
}
.contact-title{grid-column:1/-1;text-align:center;margin:0 0 8px!important;font-size:clamp(1.7rem,3vw,2.5rem)}
.contact-card .kicker{display:none}
.contact-copy{
  display:flex;
  flex-direction:column;
  align-self:stretch;
}
.contact-copy .check-list li:before{color:#000}
.shell.contact-card{width:min(1040px,calc(100% - 40px))}
.contact-copy p,
.contact-copy strong{
  color:#000;
  font-size:clamp(1.08rem,1.45vw,1.22rem);
  line-height:1.45;
}
.contact-copy .check-list li{
  color:#000;
  font-size:clamp(1.02rem,1.35vw,1.15rem);
}
.contact-copy img{
  width:370px;
  max-width:100%;
  height:auto;
  margin-top:auto;
  margin-bottom:-44px;
  transform:translateY(10%);
  mix-blend-mode:normal;
  filter:none;
  object-fit:contain;
  object-position:bottom center;
}
.contact__form input,
.contact__form textarea{
  color:#000;
  font-size:1.05rem;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder{
  color:#3a3a3a;
  opacity:1;
}
.contact__form .btn{width:100%}
.form-note{display:none}
.home-page .contact-section{padding:0 0 48px;margin-top:-120px;overflow:visible;z-index:4;background:transparent}
.offers-page .contact-section{
  position:relative;
  overflow:visible;
  z-index:4;
  padding:0 0 64px;
  margin-top:-100px;
  background:transparent;
}
.offers-page .contact-section:before{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:100px;
  bottom:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(rgba(5,13,15,.15),rgba(5,13,15,.15)),url('/media/design/network-bg.jpg') center/cover;
}
.offers-page .contact-section .plexus{top:100px;height:auto}
.offers-page .contact-section>:not(.plexus){position:relative;z-index:1}
.solution-page .contact-section{
  padding:72px 0 64px;
  margin-top:0;
  overflow:visible;
  background:#fff;
}
@media(max-width:720px){.video-card{width:86%;margin-bottom:-56px}.contact-title{grid-column:auto}.home-page .how-section{padding-top:90px}.team-teaser{padding-bottom:80px}.home-page .contact-section{margin-top:-40px;padding:0 0 36px}.offers-page .contact-section{margin-top:-80px;padding:0 0 36px}.offers-page .contact-section:before,.offers-page .contact-section .plexus{top:80px}.solution-page .contact-section{margin-top:0;padding:48px 0 36px}.contact-card{padding:28px 22px}.contact-copy img{margin-bottom:0;margin-top:16px;width:min(308px,72%);transform:none}.arch-section .architecture{grid-template-columns:1fr;width:100%}.arch-section .arch-card{width:auto}.arch-section .arch-card h3{white-space:normal}.arch-section .architecture .connector{padding:18px 0}.arch-section .architecture .connector:before{left:8%;right:8%;top:50%;bottom:auto;border-left:0;border-top:2px dashed rgba(255,255,255,.7);transform:none}}

/* Technique — hero */
.technique-page .arch-section{padding:72px 0}
.technique-page .page-hero{
  padding:112px 0 96px;
  color:#002c32;
}
.technique-page .page-hero h1{
  color:#002c32;
  margin-bottom:36px;
}
.technique-page .page-hero p{
  margin:0 auto 42px;
  font-weight:500;
  line-height:1.5;
  max-width:720px;
  color:#002c32;
}
.technique-page .pill-row{gap:18px}
.technique-page .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:1rem;
  padding:12px 26px;
  letter-spacing:.02em;
  color:#002c32;
}
.technique-page .pill-flag{
  width:18px;
  height:12px;
  display:block;
  flex-shrink:0;
  border-radius:1px;
  box-shadow:0 0 0 1px rgba(0,44,50,.15);
}
.technique-page .tech-box-section .section-head h2{color:#002c32}
.technique-page .tech-box-section .section-head p{color:#002c32;font-weight:500;font-size:clamp(1.2rem,1.7vw,1.35rem)}
.technique-page .tech-box-section .cards-2{gap:28px}
.technique-page .tech-card{
  padding:36px 34px 32px;
  border-radius:32px;
  color:#002c32;
  overflow:visible;
}
.technique-page .tech-card:after{display:none}
.technique-page .tech-card:nth-child(1),
.technique-page .tech-card:nth-child(4){background:var(--cyan)}
.technique-page .tech-card:nth-child(2),
.technique-page .tech-card:nth-child(3){background:var(--lime)}
.technique-page .tech-card h3{
  text-align:center;
  font-size:clamp(1.35rem,2vw,1.7rem);
  font-weight:800;
  margin:0 0 16px;
  color:#002c32;
}
.technique-page .tech-card p{
  margin:0 0 14px;
  font-size:.98rem;
  font-weight:500;
  line-height:1.45;
  color:#002c32;
}
.technique-page .tech-card ul{
  margin:0;
  padding-left:1.15em;
  font-size:.95rem;
  font-weight:500;
  line-height:1.45;
  color:#002c32;
}
.technique-page .tech-card li{margin:6px 0}
.technique-page .tech-infra-section .section-head h2{color:#002c32}
.technique-page .tech-infra-section .section-head p{
  color:#002c32;
  font-weight:500;
  font-size:clamp(1.2rem,1.7vw,1.35rem);
}
.technique-page .tech-infra-section .three-grid{
  padding-top:52px;
  gap:36px;
  align-items:stretch;
}
.technique-page .tech-infra-section .line-card{
  background:transparent;
  border:2px solid #002c32;
  border-radius:16px;
  padding:52px 22px 28px;
  text-align:center;
  overflow:visible;
  box-shadow:none;
  color:#002c32;
}
.technique-page .tech-infra-section .line-card .icon{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-50%);
  width:auto;
  height:72px;
  margin:0;
  padding:0 12px;
  color:#002c32;
  background:var(--lime);
  box-shadow:-18px 0 0 var(--lime),18px 0 0 var(--lime);
  overflow:visible;
  display:block;
}
.technique-page .tech-infra-section .line-card .icon[src*="vpn"]{height:76px}
.technique-page .tech-infra-section .line-card .icon[src*="laptop"]{height:70px}
.technique-page .tech-infra-section .line-card h3{
  font-size:clamp(1.2rem,1.7vw,1.4rem);
  font-weight:800;
  margin:0 0 14px;
  color:#002c32;
}
.technique-page .tech-infra-section .line-card p{
  margin:0;
  font-size:.95rem;
  font-weight:500;
  line-height:1.45;
  color:#002c32;
}
.technique-page .tech-deploy-section{
  overflow:visible;
  color:#002c32;
}
.technique-page .tech-deploy-section .shell{
  width:min(1320px,calc(100% - 40px));
}
.technique-page .tech-deploy-section .section-head{
  max-width:none;
  width:100%;
  text-align:center;
  margin-inline:auto;
}
.technique-page .tech-deploy-section .section-head h2{
  color:#002c32;
  white-space:nowrap;
}
.technique-page .tech-deploy-section .section-head p{
  color:#002c32;
  font-weight:500;
  font-size:clamp(1.2rem,1.7vw,1.35rem);
  max-width:none;
  margin-inline:auto;
  text-align:center;
  line-height:1.45;
}
.technique-page .tech-deploy-section .steps{
  margin:12px 0 36px;
  justify-content:center;
  align-items:center;
  gap:28px;
  color:#002c32;
  flex-wrap:wrap;
}
.technique-page .tech-deploy-section .step{font-size:1.05rem;font-weight:800}
.technique-page .tech-deploy-section .step .bubble{
  width:78px;
  height:78px;
  border:3.5px solid #002c32;
  border-radius:16px;
  background:transparent;
  color:var(--lime);
}
.technique-page .tech-deploy-section .step .bubble img{
  width:46px;
  height:auto;
  display:block;
}
.technique-page .tech-deploy-section .arrow{color:#002c32;font-size:1.85rem;font-weight:700;line-height:1}
.technique-page .tech-deploy-section .step-mascot{
  width:auto;
  height:108px;
  margin:0 auto 8px;
  mix-blend-mode:normal;
  object-fit:contain;
  filter:drop-shadow(3px 4px 0 #001214) drop-shadow(0 8px 12px rgba(0,0,0,.28));
}
.technique-page .step-flow{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
}
.technique-page .step-flow em{
  font-size:.82rem;
  font-weight:500;
  font-style:italic;
  color:#002c32;
}
.technique-page .tech-deploy-note{
  text-align:center;
  max-width:58ch;
  margin:0 auto 36px;
  font-size:clamp(1.2rem,1.7vw,1.35rem);
  font-weight:500;
  line-height:1.45;
  color:#002c32;
}
.technique-page .tech-deploy-section .how-cta{text-align:center;margin:0}
.technique-page .tech-deploy-section .how-cta .btn{padding:15px 24px 15px 28px;font-size:1rem}

.technique-page .tech-data-section{
  padding:72px 0;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(rgba(5,13,15,.15),rgba(5,13,15,.15)),url('/media/design/network-bg.jpg') center/cover;
}
.technique-page .tech-data-card{
  background:#fff;
  color:#002c32;
  border-radius:40px;
  padding:52px 56px 44px;
}
.technique-page .tech-data-card .section-head{
  margin:0 auto 36px;
  max-width:760px;
}
.technique-page .tech-data-card .section-head h2{
  color:#002c32;
  font-size:clamp(1.7rem,3vw,2.25rem);
  margin:0 0 16px;
}
.technique-page .tech-data-card .section-head p{
  color:#002c32;
  font-weight:500;
  font-size:clamp(1.05rem,1.5vw,1.2rem);
  line-height:1.45;
}
.technique-page .tech-data-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.technique-page .tech-data-box{
  display:flex;
  align-items:center;
  gap:18px;
  background:var(--lime);
  color:#002c32;
  border-radius:22px;
  padding:20px 24px 20px 20px;
  min-height:112px;
}
.technique-page .tech-data-box__icon{
  flex-shrink:0;
  width:auto;
  height:58px;
  display:block;
}
.technique-page .tech-data-box__icon[src*="servers"]{height:74px}
.technique-page .tech-data-box h3{
  margin:0 0 4px;
  font-size:1.12rem;
  font-weight:800;
  line-height:1.2;
  color:#002c32;
}
.technique-page .tech-data-box p{
  margin:0;
  font-size:.88rem;
  font-weight:500;
  line-height:1.35;
  color:#002c32;
}
@media(max-width:720px){
  .technique-page .tech-data-section{padding:48px 0}
  .technique-page .tech-data-card{padding:32px 22px 26px;border-radius:28px}
  .technique-page .tech-data-grid{grid-template-columns:1fr}
}

.technique-page .tech-conform-section{
  padding:72px 0 210px;
  color:#002c32;
}
.technique-page .tech-conform-section .section-head{
  max-width:none;
  width:100%;
}
.technique-page .tech-conform-section .section-head h2{
  color:#002c32;
  white-space:nowrap;
}
.technique-page .tech-conform-section .section-head p{
  color:#002c32;
  font-weight:500;
  font-size:clamp(1.2rem,1.7vw,1.35rem);
  max-width:none;
  margin-inline:auto;
  white-space:nowrap;
}
.technique-page .tech-conform-section .three-grid{
  gap:24px;
  align-items:stretch;
}
.technique-page .tech-conform-card{
  background:#002c32;
  color:#fff;
  border-radius:24px;
  padding:28px 22px 24px;
  text-align:center;
}
.technique-page .tech-conform-card h3{
  margin:0 0 14px;
  font-size:clamp(1.15rem,1.6vw,1.35rem);
  font-weight:800;
  color:#fff;
}
.technique-page .tech-conform-card p{
  margin:0;
  font-size:.9rem;
  font-weight:500;
  line-height:1.4;
  color:#fff;
}
.technique-page .contact-section{
  padding:0 0 48px;
  margin-top:-150px;
  overflow:visible;
  z-index:4;
  background:transparent;
}
@media(max-width:720px){
  .technique-page .tech-conform-section{padding:56px 0 120px}
  .technique-page .tech-conform-section .three-grid{
    grid-template-columns:1fr;
    max-width:400px;
    margin-inline:auto;
  }
  .technique-page .contact-section{margin-top:-56px;padding:0 0 36px}
  .technique-page .tech-deploy-section .section-head h2,
  .technique-page .tech-conform-section .section-head h2,
  .technique-page .tech-conform-section .section-head p{white-space:normal}
}

/* Technique et équipe */
.tech-card{position:relative;overflow:hidden}.tech-card:after{content:'';position:absolute;width:90px;height:90px;border:18px solid rgba(255,255,255,.28);border-radius:50%;right:-35px;bottom:-40px}.tech-card h3{position:relative;z-index:1}.section-lime .line-card>.icon{display:block;width:62px;height:62px;margin:0 auto 12px;color:var(--navy)}
.team-grid[style]{grid-template-columns:repeat(2,1fr)!important}.team-grid[style] .member-photo{height:290px}.team-grid[style] .member img{max-width:235px}
.timeline{padding-top:32px}.timeline:before{content:'';position:absolute;left:8%;right:8%;top:0;border-top:3px dotted #fff}.timeline-card{position:relative}.timeline-card:before{content:'';position:absolute;width:18px;height:18px;background:var(--lime);border-radius:50%;top:-43px;left:50%;transform:translateX(-50%)}
.quote-band:after{content:'“';position:absolute;right:8%;top:-30px;font:800 150px/1 Georgia;color:var(--navy)}
@media(max-width:560px){.team-grid[style]{grid-template-columns:1fr!important}.timeline:before,.timeline-card:before{display:none}}

.home-page .offer-card{border-radius:36px;padding:36px 34px}
.offer-card .check-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.offer-card .check-list li{margin:0}
.home-page .check-list li{padding-left:28px;font-size:.88rem}
.home-page .numbered li{line-height:1.35}
.home-page .polaroid{transform:rotate(-4.5deg)}
.home-page .team-teaser .split{gap:56px;align-items:center}
.home-page .team-teaser .polaroid{
  max-width:504px;
  width:100%;
  padding:20px 20px 24px;
}
.home-page .team-teaser .polaroid img{width:100%;height:auto}
.home-page .team-teaser .split>div:last-child{max-width:none}
.home-page .team-teaser .split>div:last-child p{
  font-size:clamp(1.08rem,1.45vw,1.22rem);
  line-height:1.5;
  font-weight:500;
}

/* Équipe — hero */
.equipe-page .equipe-hero{
  overflow:visible;
  z-index:2;
  padding:80px 0 56px;
  color:#002c32;
}
.equipe-page .equipe-hero .shell{
  display:grid;
  grid-template-columns:1fr;
  align-items:start;
  gap:16px 28px;
  width:min(1360px,calc(100% - 40px));
}
.equipe-page .equipe-hero__copy{
  min-width:0;
  max-width:none;
}
.equipe-page .equipe-hero h1{
  font-size:clamp(2.2rem,4vw,3.5rem);
  line-height:1.08;
  margin:0 0 28px;
  color:#002c32;
  text-align:left;
  white-space:nowrap;
}
.equipe-page .equipe-hero p{
  font-size:clamp(1.22rem,1.85vw,1.45rem);
  font-weight:500;
  line-height:1.45;
  margin:0 0 36px;
  max-width:48rem;
  color:#002c32;
  text-align:left;
}
.equipe-page .equipe-hero .btn{
  padding:15px 24px 15px 28px;
  font-size:1rem;
}
.equipe-page .equipe-hero .equipe-hero__fleur{
  position:absolute;
  right:max(40px,7vw);
  bottom:0;
  width:152px;
  height:152px;
  transform:translateY(50%);
  z-index:3;
  pointer-events:none;
}
@media(max-width:720px){
  .equipe-page .equipe-hero{padding:56px 0 40px}
  .equipe-page .equipe-hero .shell{grid-template-columns:1fr;text-align:center}
  .equipe-page .equipe-hero h1{white-space:normal}
  .equipe-page .equipe-hero h1,.equipe-page .equipe-hero p{text-align:center;margin-inline:auto}
  .equipe-page .equipe-hero .equipe-hero__fleur{width:110px;height:110px;right:24px}
  .equipe-page .equipe-rd-grid{grid-template-columns:1fr;max-width:320px;margin-inline:auto}
}

.equipe-page .equipe-rd-section{
  padding:72px 0 88px;
  overflow:visible;
}
.equipe-page .equipe-rd-section .section-head{
  margin-bottom:48px;
  max-width:none;
}
.equipe-page .equipe-rd-section .section-head h2{
  color:#fff;
  font-size:clamp(2.1rem,3.8vw,2.65rem);
  margin:0;
}
.equipe-page .equipe-rd-grid{
  gap:48px 28px;
  max-width:920px;
  margin-inline:auto;
}
.equipe-page .equipe-rd-grid .member-photo{
  height:300px;
  overflow:visible;
}
.equipe-page .equipe-rd-grid .member-photo:before{
  width:210px;
  height:228px;
  background:var(--lime);
  border-radius:46% 54% 42% 58% / 48% 40% 60% 52%;
  transform:rotate(-7deg);
  box-shadow:16px 18px 0 #fff;
  z-index:0;
}
.equipe-page .equipe-rd-grid .member img{
  height:292px;
  width:auto;
  max-width:240px;
  z-index:1;
  object-fit:contain;
  object-position:bottom center;
}
.equipe-page .equipe-rd-grid .member h3{
  margin:18px 0 6px;
  font-size:1.25rem;
  font-weight:800;
  letter-spacing:.04em;
  color:#fff;
}
.equipe-page .equipe-rd-grid .member p{
  font-size:1.12rem;
  font-weight:500;
  line-height:1.35;
  color:#fff;
}

.equipe-page .equipe-histoire{
  overflow:visible;
  z-index:2;
  padding:88px 0 64px;
  color:#002c32;
}
.equipe-page .equipe-histoire .equipe-histoire__fleur{
  position:absolute;
  left:max(36px,6vw);
  top:0;
  width:152px;
  height:152px;
  transform:translateY(-50%);
  z-index:3;
  pointer-events:none;
}
.equipe-page .equipe-histoire .section-head{
  max-width:none;
  width:100%;
  margin:0 auto 48px;
  text-align:center;
}
.equipe-page .equipe-histoire .section-head h2{
  color:#002c32;
  font-size:clamp(2.2rem,4vw,2.75rem);
  margin:0 0 22px;
  white-space:nowrap;
}
.equipe-page .equipe-histoire .section-head p{
  color:#002c32;
  font-weight:500;
  font-size:clamp(1.12rem,1.65vw,1.28rem);
  line-height:1.45;
  max-width:52rem;
  margin-inline:auto;
}
.equipe-page .equipe-histoire .timeline{
  padding-top:52px;
  gap:22px;
  max-width:980px;
  margin-inline:auto;
}
.equipe-page .equipe-histoire .timeline:before{
  left:6%;
  right:3%;
  top:16px;
  border-top:3px dotted #fff;
}
.equipe-page .equipe-histoire .timeline:after{
  content:'';
  position:absolute;
  top:8px;
  right:1%;
  width:0;
  height:0;
  border:8px solid transparent;
  border-left-color:#fff;
}
.equipe-page .equipe-histoire .timeline-card{
  border:2.5px solid #fff;
  border-radius:18px;
  padding:32px 18px 22px;
  background:transparent;
  color:#002c32;
}
.equipe-page .equipe-histoire .timeline-card:before{
  width:20px;
  height:20px;
  background:var(--lime);
  top:-46px;
  z-index:1;
  display:block;
}
.equipe-page .equipe-histoire .timeline-card:after{
  content:'';
  position:absolute;
  left:50%;
  top:-36px;
  height:22px;
  border-left:2px dashed #fff;
  transform:translateX(-50%);
}
.equipe-page .equipe-histoire .timeline-card strong{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-52%);
  background:var(--cyan);
  padding:0 14px;
  font-size:clamp(1.35rem,2vw,1.65rem);
  font-weight:800;
  color:var(--lime);
  line-height:1;
}
.equipe-page .equipe-histoire .timeline-card h3{
  margin:8px 0 12px;
  font-size:clamp(1.02rem,1.4vw,1.18rem);
  font-weight:800;
  line-height:1.25;
  color:#002c32;
  text-transform:none;
}
.equipe-page .equipe-histoire .timeline-card p{
  margin:0;
  font-size:.92rem;
  font-weight:500;
  line-height:1.4;
  color:#002c32;
}
.equipe-page .equipe-histoire__note{
  text-align:center;
  max-width:54rem;
  margin:42px auto 0;
  font-size:clamp(1.02rem,1.5vw,1.18rem);
  font-weight:500;
  line-height:1.45;
  color:#002c32;
}
.equipe-page .equipe-quote{
  overflow:visible;
  z-index:3;
  padding:64px 0 56px;
  color:#002c32;
}
.equipe-page .equipe-quote .shell{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
  gap:36px 40px;
  width:min(1320px,calc(100% - 40px));
}
.equipe-page .equipe-quote .polaroid{
  max-width:560px;
  width:100%;
  padding:16px 16px 18px;
  margin-top:-86px;
  margin-bottom:-106px;
  transform:rotate(-4.5deg);
  position:relative;
  z-index:4;
  box-shadow:0 18px 50px rgba(0,54,59,.16);
}
.equipe-page .equipe-quote .polaroid img{
  width:100%;
  height:auto;
  display:block;
}
.equipe-page .equipe-quote .polaroid span{
  display:block;
  text-align:center;
  color:#002c32;
  font:1.5rem/1.15 'Segoe Print','Comic Sans MS',cursive;
  margin-top:12px;
}
.equipe-page .equipe-quote .quote{
  position:relative;
  margin:0;
  padding:32px 0 0 58px;
  max-width:20ch;
  font-size:clamp(1.4rem,2.3vw,1.8rem);
  font-style:italic;
  font-weight:500;
  line-height:1.35;
  text-align:left;
  color:#002c32;
}
.equipe-page .equipe-quote .quote p{
  margin:0;
  font:inherit;
  color:inherit;
}
.equipe-page .equipe-quote .quote-mark{
  position:absolute;
  left:0;
  top:0;
  width:128px;
  height:auto;
  pointer-events:none;
}
.equipe-page .equipe-quote .quote:before,
.equipe-page .equipe-quote .quote:after{content:none;display:none}
.equipe-page .equipe-quote.quote-band:after{content:none}
.equipe-page .contact-section{
  padding:110px 0 48px;
  overflow:visible;
  background:#fff;
}
@media(max-width:720px){
  .equipe-page .equipe-histoire .section-head h2{white-space:normal}
  .equipe-page .equipe-histoire .equipe-histoire__fleur{width:110px;height:110px;left:16px}
  .equipe-page .equipe-histoire .timeline{grid-template-columns:1fr;max-width:360px;padding-top:12px}
  .equipe-page .equipe-histoire .timeline:before,
  .equipe-page .equipe-histoire .timeline:after,
  .equipe-page .equipe-histoire .timeline-card:before,
  .equipe-page .equipe-histoire .timeline-card:after{display:none}
  .equipe-page .equipe-quote{padding:48px 0 36px}
  .equipe-page .equipe-quote .shell{grid-template-columns:1fr;justify-items:center}
  .equipe-page .equipe-quote .polaroid{margin-top:-36px;margin-bottom:8px;max-width:410px}
  .equipe-page .equipe-quote .quote{max-width:22ch;margin-inline:auto}
  .equipe-page .contact-section{padding:56px 0 36px}
}
.home-page .team-teaser .split>div:last-child p:first-of-type{font-style:italic}

/* Pages mentions / confidentialité */
.legal-page .page-hero{padding:88px 0 56px;text-align:center;background:#fff;color:#000}
.legal-page .page-hero h1{font-size:clamp(2.1rem,4.2vw,3.4rem);margin-bottom:18px}
.legal-page .page-hero p{max-width:40rem;font-weight:500}
.legal-page .legal-updated{margin:0;font-size:.92rem;font-weight:600;color:var(--navy);opacity:.7}
.legal-page .legal-doc{max-width:760px;color:var(--ink)}
.legal-page .legal-doc article{margin:0 0 42px}
.legal-page .legal-doc h2{font-size:1.28rem;margin:0 0 14px;color:var(--navy)}
.legal-page .legal-doc p,.legal-page .legal-doc li{font-size:1.02rem;line-height:1.65;margin:0 0 12px}
.legal-page .legal-doc ul{margin:0 0 12px;padding-left:1.2em}
.legal-page .legal-doc a{color:var(--cyan);text-decoration:underline;text-underline-offset:3px}
.legal-page .legal-doc a:hover{color:var(--navy)}
.legal-page .legal-back{margin-top:8px}
.legal-page .legal-back a{font-weight:700;text-decoration:none}
