/* CSS GEN-HY - PIXELS CARRES - Janv.2026 */
:root{
  --font: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --text: #121212;
  --muted: #6a6a6a;
  --line: #e7eaee;
  --soustitreh2: #061F4A;
  --soustitreh3: #fff;
  --textbleu:#46A9BD;
  --orange: #EE5B46;
  --cyan: #48C3DA;
  --gris:#F5F5F7;
  --cyan-2: #6fd0da;
  --bg: #ffffff;
  --soft: #f5f6f8;
  --shadow: 0 14px 34px rgba(0,0,0,.10);
  --radius: 18px;
  --container: 1120px;
  --gutter: 22px;
  --spec-cat-bg: var(--cyan);     
  --spec-row-alt: #cfeff5;        
  --spec-border: #ffffff;
  --spec-radius: 10px;

}

.green {color:#19fa60 !important}



*{ box-sizing:border-box; }
html,body{
  height:100%;
  overflow-x: hidden;
  overflow-y: visible;
  }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding-left:18px; }
.container{
  width:min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline:auto;
}
.center{ text-align:center; }
.small{ font-size:12px; }
.muted{ color:var(--muted); }

h1,h2,h3{ margin:0; }
h1{ font-weight:700; letter-spacing:-.02em; }
h2{ font-weight:700; letter-spacing:-.01em; }
h3{ font-weight:700; }
strong{font-weight: 600;}
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:-.02em;
}
.brand__logo{ height: 96px; width:auto; }
.nav{
  display:flex;
  gap:16px;
  align-items:center;
}
.nav__link{
  font-weight:700;
  color:var(--muted);
  font-size:14px;
}
.nav__link:hover{ color:var(--text); }
.header__right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
}
.lang{ color: var(--muted); }
.lang.is-active{ color: var(--text); }
.lang-sep{ color: rgba(0,0,0,.25); }
.nav-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-panel{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top: calc(100% + 10px);
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  overflow:hidden;
}
.nav-panel__link{
  display:block;
  padding: 14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
  font-weight:800;
  color: var(--text);
}
.nav-panel__bottom{
  padding: 14px 16px 16px;
  border-top:1px solid rgba(0,0,0,.06);
  display:grid;
  gap:12px;
}
#nav-toggle:checked ~ .nav-panel{ display:block; }
#nav-toggle:checked ~ .header__right .burger span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
#nav-toggle:checked ~ .header__right .burger span:nth-child(2){ opacity:0; }
#nav-toggle:checked ~ .header__right .burger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 980px){
  .nav{ display:none; }
  .header-cta{ display:none; }
  .burger{ display:flex; }
  .brand__logo{ height: 52px; }
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:5px;
  border:1px solid transparent;
  font-weight:800;
  font-size:14px;
  white-space:nowrap;
}
.btn--primary{
  background:var(--cyan);
  color:#fff;
}
.btn--secondary{
  background:var(--orange);
  color:#fff;
}
.btn--ghost{
  background:transparent;
  border-color: rgba(0,0,0,.10);
  color:var(--text);
}
.btn--wide{ width:100%; }
.btn--small {width: 400px;}

.hero{
  height: 597px;
  padding: 34px 0 22px;
  background-image: url("images/Bandeau-orange-haut.png");
  background-size: cover;
  border-radius:0px 0px 0px 90px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 472px 1fr;
  gap: 26px;
  align-items: start;
}
.hero__media {
  width: 472px;
height: 653px;
  margin-top: 40px;
margin-left: 300px;
}


.hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1500px) {
.hero__media {
margin-left: 100px;
}
}
@media (max-width: 980px) {
	 .hero__inner{
    grid-template-columns: 1fr;
  }
  .hero__media{
    justify-self: center;
    margin: 0;
  }
}

.hero h1{
  font-size:46.8px;
  line-height:1.2;
  margin-bottom:14px;
  padding-top:55px;
}
.lead{
  font-size:32px;
  color: #fff;
  margin:0 0 10px;
  max-width: 44ch;
  line-height:1.2em; 
}
.lead.en{
  font-size:29px;
  }
.after-hero{
  position: relative;
  padding: 55px 0px 55px 0px;
  margin-top: -10px;
  background:transparent;
}
.after-hero .container{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 24px;
  align-items:start;
}
.after-hero__text{
  grid-column:1;
  margin:0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 22px;
  line-height:1.2em; 
}
.band{ padding:26px 0 30px; }
.band--cyan{
  background: var(--cyan);
  color:#fff;
  border-radius:100px 0px 0px 0px;
  padding-bottom: 90px;
}
.band--cyan h2{ font-size:40px; margin-bottom:6px; color:var(--soustitreh2); text-decoration: underline; text-underline-offset: 10px; }
.band--cyan h3{ font-size:30px; margin-bottom:6px; color:var(--soustitreh3); font-weight: 300; }
.cards4{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.card{
  border-radius: 14px;
  padding:14px 14px 12px;
  border:1px solid rgba(0,0,0,.06);
  padding: 60px 50px 50px 140px;
}
.card--white{
  background:#fff;
  color:var(--text);
}
.card h4{ font-size:20px; margin:8px 0 6px; }
.card p{ margin:0; font-size:20px; }
.card__icon{
  width:40px; height:40px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(54,184,200,.12);
  color: var(--cyan);
  border:1px solid rgba(54,184,200,.22);
}
.card span {
	color:#EE5B46;
	font-weight: bold;
}
.durabi {
	background-image: url("images/gamme-tests/Picto-essais-durabilite.png");
	background-repeat: no-repeat;
	background-position: 30px 30px;
}
.gaz {
	background-image: url("images/gamme-tests/Picto-debit-gaz.png");
	background-repeat: no-repeat;
	background-position: 30px 30px;
}
.stack {
	background-image: url("images/gamme-tests/Picto-essais-stack.png");
	background-repeat: no-repeat;
	background-position: 30px 30px;
}
.tension {
	background-image: url("images/gamme-tests/Picto-mesure-tension.png");
	background-repeat: no-repeat;
	background-position: 30px 30px;
}
.section{ padding:34px 0; }
.section h2{ font-size:40px; margin-bottom:8px; }
.blue {color:var(--textbleu); font-size: 20px; font-weight: bold; width: 75%; margin-left: auto; margin-right: auto;margin-top: -10px;}
.panel{
  border-radius: var(--radius);
  overflow:hidden;
  padding:50px;
}
.panel--soft{ background: #F5F5F7; }

.grid-apps{
  padding:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.app{padding:14px;}
.optim {
	background-image: url("images/applications/optimisation-technologique.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.eval {
	background-image: url("images/applications/evaluation-prototype.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.recherche {
	background-image: url("images/applications/recherche-developpement.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.valid {
	background-image: url("images/applications/validation-performance.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.endurance {
	background-image: url("images/applications/essais-endurance.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.analyse {
	background-image: url("images/applications/analyses-duree-surete.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.resistance {
	background-image: url("images/applications/essais-resistance.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.effi-stack {
	background-image: url("images/applications/efficacite-stack.png");
	background-repeat: no-repeat;
	background-position: left top;
}
.app h3{ margin:80px 0px 6px 0px; font-size:18px; color:var(--orange); }
.app p{ margin:0; font-size:15px; }
.specification {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 30px;
}
.spec{
  background: var(--cyan);
  color:#fff;
  border-radius: 16px;
  padding:35px 16px;
}
.spec ul li {
	margin-bottom: 20px;
}
.spec span {
	width: 120px;
	height: 5px;
	color:#fff;
	background: #fff;
	border: none;
	display: block;
	margin-bottom: 20px;
}
.title {
	font-size: 25px;
	text-align: center;
	font-weight: 600;
}
.otomatic {
	width: 100%;
	height: auto;
	display: flex;
}
.blocleft {
	width: 40%;
	height: 450px;
	border-radius:15px;
	background: #EE5B46;
	text-align: center;
}
.blocleft img {
	margin-left: auto;
	margin-right: auto;
}
.blocleft p {
	color: #fff;
	text-align: center;
	font-weight: 600;
	padding-top:5px;
}
.expli {
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 15px;
	}

.blocright {
	width: 60%;
	height: auto;
	padding-top:30px;
}
.intro, .last {
	border-top: 2px solid black;
	padding: 15px 0px 20px 0px;
	margin-left: 35px;
}
.intro p, .last p {
	color:var(--orange);
	font-weight: 600;
}
.last {
	border-bottom: 2px solid black;
}
.simply-scroll-container { 
	position: relative;
}
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
}
.simply-scroll-list { 
	overflow: hidden;
	margin: 39px 0px 42px 0px;
	padding: 0;
	list-style: none;
}	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}	
.simply-scroll-list li img {
	border: none;
	display: block;
	border-radius:40px;
}
.simply-scroll { 
	width: 100%;
	height: auto;
	margin-bottom: 1em;
	background: var(--gris);
	margin-top: 50px;
	margin-bottom:80px;
}
.simply-scroll .simply-scroll-clip {
	width: 100%;
	height: auto;
}
.simply-scroll .simply-scroll-list li {
	float: left;
	width: 400px;
	height: auto;
	margin-right:15px;
}
.frise {
	margin-top:60px;
	margin-bottom:30px;
}
.space {
	border-right:110px solid #feffff;
}
#fiche {
	background: var(--gris);
	width: 100%;
	height: auto;
	margin-top:50px;
}
.center {
	width:800px;
	margin-left: auto;
	margin-right: auto;
}
.adv {margin-top:50px;}
.pill-tabs{ margin-top: 10px; }

.pill-tabs__state{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.pill-tabs__bar{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 10px;
  height: 85px;
  overflow: hidden;
}
.pill-tabs__thumb{
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(50% - 10px);
  height: calc(100% - 20px);
  border-radius: 999px;
  background: #f05d49;
  transition: transform .28s ease;
}
.pill-tabs__tab{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 26px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.08;
  color: #6f6f6f;
  cursor: pointer;
  border: 0;
  background: transparent;
  white-space: normal;
}
.pill-tabs__tab.is-active{ color:#fff; }
.pill-tabs__panel{ display:none; }
.pill-tabs__panel.is-active{ display:block; }
@media (max-width: 980px){
  .pill-tabs__bar{ height: 86px; padding: 8px; }
  .pill-tabs__thumb{
    top: 8px; left: 8px;
    width: calc(50% - 8px);
    height: calc(100% - 16px);
  }
  .pill-tabs__tab{ font-size: 12px; padding: 0 14px; }
}
.pill-tabs__panel table{
  width: 100%;
  border-collapse: collapse;
  margin-top:35px;
}
.pill-tabs__panel td{
  padding: 10px 12px;
  vertical-align: top;
  border-bottom: 1px solid #EE5B46;
  text-align: left;
}
td.first {border-top: 1px solid #EE5B46;}
td:first-child, th:first-child{ width:30%; }
td:last-child,  th:last-child { width:70%; }
.container-formation {
	width: 100%;
	height: 768px;
	background-image: url("images/formation/Visuel-banc-test-mise-en-service.jpg");
	background-size: cover;
	margin-top:50px;
}
.blocinfo {
	position: relative;
	top:150px;
	left:100px;
	width: 450px;
	height: auto;
	background: #fff;
	background-image: url("images/formation/picto-formation.png");
	background-repeat: no-repeat;
	background-position: center 30px;
	border-radius:15px;
	padding: 40px 30px;
}
.blocinfo h2 {
	padding-top:65px;
	text-align: center;
	font-size: 25px;
}
.blocinfo h2 span {
	font-size: 18px;
}
.cta{
  padding:34px 0px 34px 25px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}
.cta h2 {
	text-align: center;
	font-weight: 600;
	margin-bottom: 35px;
	font-size:30px;
}
.cta__inner{
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 18px;
  align-items: start;
}

.cta__media{
  width: 270px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  margin-left: 140px;
  margin-top: 55px;
}

.cta__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

 @media (max-width: 980px) {
	 .cta__inner{
    grid-template-columns: 1fr;
  }
  .cta__media{
    justify-self: center;
    margin: 0;
  }
}
.cta__contact {text-align: center;}
.contact-card{
  margin-top:10px;
  padding:16px;
}
.contact-card__person h3 {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}
.contact-name {
	width: 400px;
	background: #F2F4F3;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	padding: 15px 5px;
	border-radius:80px;
}
.contact-name i {
	font-size: 14px;
}
.btn--small {
	margin-top: 15px;
	padding: 15px 5px;
	border-radius:80px;
}
.simple::after {
	content: url('images/fleche.png');
	padding-left: 8px;
}
.muted {
	margin-top: 15px;
}
.more {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.orange {
	color: #EE5B46;
	font-size: 30px;
	font-weight: 600;
}
.footer{
  background:#2b2b2b;
  color:#fff;
  padding:60px 0px 60px 40px;
  border-radius:100px 0px 0px 0px;
}
.links {  
  padding: 10px;
  display: flex;
  margin-top: 30px;
  border-top:2px solid #a4a4a4;
  border-bottom:2px solid #a4a4a4;
}
.item {
  padding: 10px 20px 0px 0px;
}
.push {
  margin-left: auto;
  margin-top: -10px;
}
.push::after {
	content:url('images/footer/linkedin.png');
	vertical-align: -50%;
	padding-left: 5px;
}
.marge{position: relative;top: -40px;right: 60px;float: right;}
.links a {
	font-size: 13px;
	color: rgba(255,255,255,.86);
}
.footer__partners{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  padding-top:40px;
 }
 .partners-more {
  float: right;
  display: block;
  position: relative;
  top:-110px;
  text-align: center;
 }
 .partners-more img {display: inline-flex;}
 .partners-more p {font-size: 12px;}
.footer__partners img{
  height:92px;
  width:auto;
}
img.partners-smaller {
	height: 50px;
	width: auto;
}
.address {
	width: 100%;
	font-size: 14px;
	text-align: left;
}



@media (max-width: 980px){
  .nav{ display:none; }
  .hero__inner{ grid-template-columns: 1fr; }
  .hero h1{ font-size:36px; }
  .cards4{ grid-template-columns: repeat(1, 1fr); }
  .grid-apps{ grid-template-columns: repeat(2, 1fr); }
  .specs{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .inline-feature{ grid-template-columns: 1fr; }
  .advantages{ grid-template-columns: 1fr; }
  .cta__inner{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; text-align:center; }
  .footer__partners{ justify-content:center; }
  .after-hero .container{
    grid-template-columns: 1fr;
    }
  .after-hero{ 
	  padding-top: 350px;
  }
  .after-hero__text{
   max-width: none;
    width: 100%;
    text-align: left;
  }
  /*.hero__img{
   bottom: -470px;
}*/
.hero__media {
  width: 100%;
  height: auto;
  margin-left: 0;
}
  .lead, .lead.en{
  font-size:22px;
}
.center {
	width:100%;
	margin-left: auto;
	margin-right: auto;
}
.blocinfo {
	position: relative;
	top:150px;
	left:10px;
	width: 300px;
}
.btn--small,.contact-name {
	width: 100%;
}
.btn--small {font-size: 12px;}
.more{width: 100%;}
.marge{display: none;}
.footer{
  padding:60px 0px 150px 40px;
  }
.footer__partners, .partners-more {
	display: block;
	width: 100%;
}
.partners-more {
	position: relative;
	top:0;
}
.specification {
  grid-template-columns: repeat(1, 1fr);
}
.otomatic {
	width: 100%;
	height: auto;
	display: block;
}
.blocleft,.blocright {
	width: 100%;
	height: 450px;
}
}
@media (max-width: 520px){
  .cards4{ grid-template-columns: 1fr; }
  .grid-apps{ grid-template-columns: 1fr; }
  /*.hero__img{bottom: -190px;}
  .after-hero{ padding-top: 200px;}*/
}

.side-cta{
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1200;
  width: 140px;              
  height: 140px;             
  background: #000D36;       
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  text-align: center;
  padding:0px 0px 20px 0px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(20px);
  transition: opacity .2s ease, transform .2s ease;
}
.side-cta.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.side-cta__text{
  font-size: 16px;           
  line-height: 1.30;
  font-weight: 400;
  padding-top:20px;
}
.side-cta__plus{
  width: 34px;               
  height: 34px;             
  margin-top: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 980px){
  .side-cta{ display:none !important; }
  .reveal{ opacity:1; transform:none; }
}
.reveal{
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .9s ease, transform .8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* === tableau fiches de données === */
.spec-table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border-radius: var(--spec-radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}

.spec-table th,
.spec-table td{
  padding:14px 16px;
  vertical-align: middle;
  border-right: 4px solid var(--spec-border);
  border-bottom: 4px solid var(--spec-border);
  word-wrap: break-word;
}

.spec-table colgroup col:nth-child(1){ width: 20%; }
.spec-table colgroup col:nth-child(2){ width: 40%; }
.spec-table colgroup col:nth-child(3){ width: 40%; }
.spec-table .cat{
  background: var(--spec-cat-bg);
  color:#fff;
  font-weight:800;
  text-align:center;
}

.spec-table .row-light td:not(.cat){ background: var(--spec-row-alt); }
.spec-table .row-white td:not(.cat){ background:#fff; }
.spec-table .label{ font-weight:700; }
.spec-table .value{ text-align:left; }


@media (max-width: 760px){
  .spec-table{
    box-shadow:none;
    border-radius:0;
  }

  .spec-table colgroup{ display:none; }
  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td{
    display:block;
    width:100%;
  }

  .spec-table tr{
    margin: 0 0 14px 0;
    border-radius: var(--spec-radius);
    overflow:hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  }

  .spec-table td{
    border-right:none;
    border-bottom: 1px solid rgba(255,255,255,.9);
  }

  .spec-table .cat{
    border-bottom: 4px solid var(--spec-border);
  }

  .spec-table .label,
  .spec-table .value{
    width:100%;
    display:block;
  }

  .spec-table .value{
    margin-top:6px;
  }
}


