.cb-wrap{
  --cb-green:#007f6d;
  --cb-green-dark:#005f51;
  --cb-green-soft:#eaf7f3;
  --cb-black:#202020;
  --cb-text:#4b5563;
  --cb-muted:#6b7280;
  --cb-line:#e5eeeb;
  --cb-soft:#f7faf9;
  --cb-white:#fff;
  width:min(1120px, calc(100% - 32px));
  margin:0 auto 18px;
  background:rgba(255,255,255,.98);
  border:1px solid var(--cb-line);
  border-radius:22px;
  box-shadow:0 8px 24px rgba(0,0,0,.045);
  overflow:hidden;
  box-sizing:border-box;
  color:var(--cb-text);
}

.cb-wrap *{
  box-sizing:border-box;
}

.cb-tabs{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  margin:0;
  padding:8px;
  gap:8px;
  background:#f5f8f7;
  border-bottom:1px solid var(--cb-line);
}

.cb-tabbtn{
  appearance:none;
  border:1px solid #e2ebe8;
  background:#fff;
  min-width:0;
  min-height:70px;
  padding:15px 18px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:13px;
  text-align:left;
  color:var(--cb-black) !important;
  text-decoration:none !important;
  cursor:pointer;
  position:relative;
  box-shadow:0 3px 10px rgba(10,25,22,.018);
  transition:background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cb-tabbtn:last-child{
  border-right:1px solid #e2ebe8;
}

.cb-tabbtn:after{
  display:none;
}

.cb-tabbtn:hover,
.cb-tabbtn:focus-visible{
  background:#fbfdfc;
  border-color:#d5e4df;
  outline:none;
  transform:translateY(-1px);
}

.cb-tabbtn:focus-visible{
  box-shadow:0 0 0 3px rgba(0,127,109,.12);
}

.cb-tabbtn[aria-selected="true"]{
  background:linear-gradient(135deg, var(--cb-green), var(--cb-green-dark));
  border-color:var(--cb-green);
  color:#fff !important;
  box-shadow:0 10px 24px rgba(0,127,109,.18);
}

.cb-tabbtn[aria-selected="true"]:hover,
.cb-tabbtn[aria-selected="true"]:focus-visible{
  background:linear-gradient(135deg, var(--cb-green), var(--cb-green-dark));
  border-color:var(--cb-green);
  color:#fff !important;
}

.cb-tabbtn[aria-selected="true"]:after{
  display:none;
}

.cb-ico{
  flex:0 0 44px;
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#f1f5f4;
  border:1px solid #e5eeeb;
  color:#25313a;
  transition:background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.cb-tabbtn[aria-selected="true"] .cb-ico{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.24);
  color:#fff;
}

.cb-tabbtn:hover .cb-ico{
  transform:translateY(-1px);
}

.cb-ico svg{
  width:29px;
  height:29px;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:2.15;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cb-tab-copy{
  min-width:0;
}

.cb-title{
  display:block;
  color:inherit !important;
  font-size:16px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.02em;
}

.cb-sub{
  display:block;
  margin-top:4px;
  color:#66736f !important;
  font-size:12px;
  line-height:1.25;
  font-weight:700;
}

.cb-tabbtn[aria-selected="true"] .cb-title{
  color:#fff !important;
}

.cb-tabbtn[aria-selected="true"] .cb-sub{
  color:rgba(255,255,255,.86) !important;
}

.cb-panels{
  background:linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
}

.cb-panel{
  display:none;
  padding:22px 24px 24px;
}

.cb-panel.is-active{
  display:block;
}

.cb-form{
  display:grid;
  grid-template-columns:1fr 1fr 210px;
  gap:14px;
  align-items:end;
}

.cb-field{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:7px;
}

.cb-field label,
.cb-poseur-label{
  color:#34403e;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.03em;
}

.cb-wrap .cb-field select,
.cb-wrap .cb-poseur-input{
  width:100%;
  min-height:50px;
  padding:0 44px 0 15px;
  border:1px solid #dfe8e5;
  border-radius:12px;
  background:#fff;
  color:#111827;
  font-size:14px;
  font-weight:650;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cb-wrap .cb-field select{
  cursor:pointer;
}

.cb-wrap .cb-field select:focus,
.cb-wrap .cb-poseur-input:focus{
  border-color:rgba(0,127,109,.62);
  box-shadow:0 0 0 4px rgba(0,127,109,.09);
}

.cb-btn{
  min-height:50px;
  padding:0 18px;
  border-radius:12px;
  border:0;
  background:linear-gradient(135deg, var(--cb-green), var(--cb-green-dark));
  color:#fff !important;
  font-size:14px;
  line-height:1;
  font-weight:950;
  text-decoration:none !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  cursor:pointer;
  box-shadow:none;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}

.cb-btn:hover,
.cb-btn:focus-visible{
  color:#fff !important;
  text-decoration:none !important;
  filter:brightness(.98);
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,127,109,.14);
  outline:none;
}

.cb-btn svg{
  width:17px;
  height:17px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cb-popular{
  margin-top:16px;
  min-height:48px;
  padding:10px 14px;
  border-radius:14px;
  background:#f7f9f8;
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
}

.cb-popular-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#6b7280;
  font-size:12px;
  font-weight:850;
  margin-right:2px;
}

.cb-popular-label svg{
  width:15px;
  height:15px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
}

.cb-popular-chips{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  min-width:0;
}

.cb-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid #edf1f0;
  color:#303b39 !important;
  font-size:12px;
  font-weight:800;
  text-decoration:none !important;
  box-shadow:0 4px 12px rgba(0,0,0,.025);
  transition:transform .18s ease, border-color .18s ease, color .18s ease;
}

.cb-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(0,127,109,.25);
  color:var(--cb-green-dark) !important;
}

/* Formation : version visuelle */
.cb-training-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  margin-bottom:18px;
}

.cb-kicker{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:7px;
  color:var(--cb-green-dark);
  font-size:11px;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.cb-kicker:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--cb-green);
  box-shadow:0 0 0 5px rgba(0,127,109,.10);
}

.cb-training-title,
.cb-poseur-title{
  margin:0;
  color:var(--cb-black);
  font-size:25px;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.04em;
}

.cb-training-head p,
.cb-poseur-head p{
  margin:7px 0 0;
  max-width:720px;
  color:#4d5a57 !important;
  font-size:14px !important;
  line-height:1.55 !important;
  font-weight:600;
}

.cb-training-included{
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
  width:fit-content;
  max-width:100%;
  margin-top:10px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--cb-green-soft);
  color:var(--cb-green-dark);
  font-size:12px;
  line-height:1.25;
  font-weight:950;
}

.cb-training-included:before{
  content:"✓";
  width:18px;
  height:18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--cb-green);
  font-size:11px;
  font-weight:950;
  box-shadow:0 4px 12px rgba(0,127,109,.10);
}

.cb-training-link{
  color:var(--cb-green-dark) !important;
  text-decoration:none !important;
  font-size:13px;
  font-weight:950;
  white-space:nowrap;
}

.cb-training-link:hover{
  text-decoration:underline !important;
}

.cb-training-link-wrap{
  display:flex;
  justify-content:flex-end;
  margin-top:14px;
}

.cb-training-link-wrap-mobile{
  display:none;
}

.cb-training-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.cb-training-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:100%;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--cb-line);
  border-radius:18px;
  text-decoration:none !important;
  color:inherit !important;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cb-training-card:hover,
.cb-training-card:focus-visible{
  transform:translateY(-3px);
  border-color:rgba(0,127,109,.28);
  box-shadow:0 10px 24px rgba(0,0,0,.055);
  outline:none;
}

.cb-training-media{
  position:relative;
  height:250px !important;
  overflow:hidden;
  background:#dfeee9;
}

.cb-training-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .32s ease;
}

.cb-training-card:hover .cb-training-media img{
  transform:scale(1.035);
}

.cb-training-media:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05) 25%, rgba(0,0,0,.50) 100%);
}

.cb-training-badges{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:2;
  display:flex;
  justify-content:space-between;
  gap:8px;
  align-items:center;
}

.cb-training-badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#10201d;
  font-size:11px;
  font-weight:950;
  backdrop-filter:blur(8px);
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.cb-training-badge.is-price{
  background:rgba(0,127,109,.95);
  color:#fff;
}

.cb-training-body{
  padding:17px 16px 16px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.cb-training-card-title{
  margin:0;
  color:var(--cb-black);
  font-size:18px;
  line-height:1.18;
  font-weight:950;
  letter-spacing:-.025em;
}

.cb-training-body p{
  margin:9px 0 15px;
  color:#4f5c59 !important;
  font-size:13px !important;
  line-height:1.45 !important;
  font-weight:650;
}

.cb-card-cta{
  margin-top:auto;
  min-height:40px;
  border-radius:11px;
  background:var(--cb-green);
  color:#fff !important;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:12px;
  font-weight:950;
  transition:background .18s ease;
}

.cb-training-card:hover .cb-card-cta{
  background:var(--cb-green-dark);
}

/* Poseur : retour version précédente */
.cb-poseur-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

.cb-poseur-card{
  position:relative;
  min-width:0;
  background:linear-gradient(180deg,#fff 0%,#f8fbfa 100%);
  border:1px solid rgba(14,35,31,.09);
  border-radius:18px;
  padding:22px;
  overflow:hidden;
}

.cb-poseur-card:before{
  content:"";
  position:absolute;
  right:-45px;
  top:-50px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(0,127,109,.07);
  pointer-events:none;
}

.cb-poseur-card > *{
  position:relative;
  z-index:1;
}

.cb-poseur-title{
  margin:0;
  color:var(--cb-black);
  font-size:25px;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.04em;
}

.cb-poseur-text{
  margin:8px 0 0;
  max-width:720px;
  color:#4d5a57 !important;
  font-size:14px !important;
  line-height:1.55 !important;
  font-weight:600;
}

.cb-poseur-form{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  margin-top:18px;
}

.cb-poseur-form .cb-poseur-input{
  padding-right:16px;
}

.cb-poseur-form .cb-btn{
  min-width:210px;
}

.cb-poseur-benefits{
  display:grid;
  gap:10px;
}

.cb-benefit-line{
  display:flex;
  align-items:flex-start;
  gap:11px;
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(14,35,31,.08);
  box-shadow:0 8px 22px rgba(0,0,0,.035);
}

.cb-benefit-line span:first-child{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:999px;
  background:var(--cb-green-soft);
  color:var(--cb-green);
  display:grid;
  place-items:center;
}

.cb-benefit-line svg{
  width:16px;
  height:16px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cb-benefit-line strong{
  display:block;
  color:var(--cb-black);
  font-size:14px;
  line-height:1.2;
  font-weight:900;
}

.cb-benefit-line small{
  display:block;
  margin-top:3px;
  color:var(--cb-muted);
  font-size:12px;
  line-height:1.35;
  font-weight:620;
}

.cb-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@media (max-width:980px){
  .cb-form{
    grid-template-columns:1fr 1fr;
  }
  .cb-form .cb-btn{
    grid-column:1 / -1;
  }
  .cb-training-grid,
  .cb-poseur-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .cb-wrap{
    width:calc(100% - 0px);
    border-radius:18px;
    box-shadow:0 6px 18px rgba(0,0,0,.035);
    margin-bottom:16px;
  }

  .cb-tabs{
    grid-template-columns:repeat(3, minmax(0,1fr));
    padding:6px;
    gap:5px;
  }

  .cb-tabbtn{
    min-height:86px;
    padding:10px 6px 11px;
    flex-direction:column;
    gap:6px;
    text-align:center;
    justify-content:center;
    border-radius:7px;
  }

  .cb-tabbtn:after{
    display:none;
  }

  .cb-ico{
    width:38px;
    height:38px;
    border-radius:11px;
  }

  .cb-ico svg{
    width:26px;
    height:26px;
    stroke-width:2.15;
  }

  .cb-title{
    font-size:11px;
    line-height:1.12;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .cb-sub{
    display:none;
  }

  .cb-panel{
    padding:16px;
  }

  .cb-form,
  .cb-poseur-form{
    grid-template-columns:1fr;
    gap:12px;
  }

  .cb-wrap .cb-field select,
  .cb-wrap .cb-poseur-input,
  .cb-btn{
    min-height:48px;
    width:100%;
  }

  .cb-popular{
    padding:10px;
    gap:8px;
    flex-wrap:wrap;
    overflow:hidden;
  }

  .cb-popular-label{
    width:100%;
    flex:0 0 100%;
    white-space:nowrap;
  }

  .cb-popular-chips{
    width:100%;
    flex:0 0 100%;
    display:flex;
    flex-wrap:nowrap;
    gap:7px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .cb-popular-chips::-webkit-scrollbar{
    display:none;
  }

  .cb-chip{
    flex:0 0 auto;
    min-height:27px;
    padding:0 11px;
    font-size:11px;
    white-space:nowrap;
  }

  .cb-training-included{
    border-radius:13px;
    padding:8px 10px;
    font-size:11px;
  }

  .cb-training-head{
    grid-template-columns:1fr;
    gap:10px;
    margin-bottom:14px;
  }

  .cb-training-title,
  .cb-poseur-title{
    font-size:22px;
  }

  .cb-training-link{
    display:inline-flex;
    width:fit-content;
    justify-self:start;
  }

  .cb-training-link-wrap-desktop{
    display:none;
  }

  .cb-training-link-wrap-mobile{
    display:flex;
    justify-content:flex-start;
    margin-top:12px;
  }

  .cb-training-media{
    height:250px !important;
  }

  .cb-poseur-card{
    border-radius:16px;
    padding:16px;
  }
}


/* =========================================================
   Hero homepage Covering.fr
   Shortcode : [covering_home_hero]
   Le widget original [covering_bloc] est appelé tel quel.
   ========================================================= */

/* Fix XStore / Elementor : supprimer l'espace gris entre le menu et le hero */
body:has(.cb-home-hero) .site-content,
body:has(.cb-home-hero) .content-page,
body:has(.cb-home-hero) .page-content,
body:has(.cb-home-hero) .main-content,
body:has(.cb-home-hero) .elementor-location-single,
body:has(.cb-home-hero) .elementor-section:first-child,
body:has(.cb-home-hero) .elementor-top-section:first-child{
  padding-top:0 !important;
  margin-top:0 !important;
}

body:has(.cb-home-hero) .elementor-widget-shortcode,
body:has(.cb-home-hero) .elementor-widget-container,
body:has(.cb-home-hero) .elementor-shortcode{
  margin-top:0 !important;
  padding-top:0 !important;
}


/* v1.9.9 - Suppression de la micro-ligne desktop entre le menu et le hero */
@media (min-width:821px){
  body:has(.cb-home-hero) .header-wrapper,
  body:has(.cb-home-hero) .site-header,
  body:has(.cb-home-hero) .main-header,
  body:has(.cb-home-hero) .header-main,
  body:has(.cb-home-hero) .header-bottom,
  body:has(.cb-home-hero) .et_b_header-wrapper,
  body:has(.cb-home-hero) .et_b_header,
  body:has(.cb-home-hero) .et_b_header-menu,
  body:has(.cb-home-hero) .menu-wrapper,
  body:has(.cb-home-hero) .navbar-header{
    border-bottom:0 !important;
    box-shadow:none !important;
  }

  .cb-home-hero{
    margin-top:-20px;
  }

  .cb-home-hero:before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:2px;
    background:#001012;
    z-index:6;
    pointer-events:none;
  }
}

.cb-home-hero{
  --cb-hero-green:#007f6d;
  --cb-hero-green-dark:#005f51;
  --cb-hero-white:#fff;
  position:relative;
  margin-top:-18px;
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
  background:#fff;
  color:#fff;
  isolation:isolate;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,Helvetica,sans-serif !important;
  font-synthesis:none;
  text-rendering:geometricPrecision;
  -webkit-font-smoothing:antialiased;
  -webkit-text-size-adjust:100%;
}

.cb-home-hero *{
  box-sizing:border-box;
}

.cb-home-hero__title,
.cb-home-hero__text,
.cb-home-hero__cta,
.cb-home-hero .cb-wrap{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,Helvetica,sans-serif !important;
  font-synthesis:none;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
  -webkit-text-size-adjust:100%;
}

.cb-home-hero__stage{
  position:relative;
  min-height:640px;
  padding:82px 24px 130px;
  overflow:hidden;
  background:#001012;
}

.cb-home-hero__bg-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
  pointer-events:none;
  user-select:none;
  transform:translateZ(0);
}

.cb-home-hero__stage:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 68% 38%, rgba(0,127,109,.16), transparent 32%),
    linear-gradient(90deg, rgba(0,9,12,.94) 0%, rgba(0,10,13,.82) 28%, rgba(0,14,16,.42) 58%, rgba(0,0,0,.20) 100%);
  pointer-events:none;
}

.cb-home-hero__stage:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(180deg, transparent 0%, rgba(0,10,12,.38) 45%, rgba(0,8,10,.74) 100%);
  pointer-events:none;
  z-index:2;
}

.cb-home-hero__inner{
  position:relative;
  z-index:3;
  width:min(1280px, calc(100% - 32px));
  margin:0 auto;
}

.cb-home-hero__copy{
  width:min(620px, 100%);
}

.cb-home-hero__title{
  margin:0;
  color:#fff !important;
  font-size:clamp(58px, 5.6vw, 86px);
  line-height:.98;
  letter-spacing:-.058em;
  font-weight:900;
  text-shadow:0 7px 26px rgba(0,0,0,.26);
}

.cb-home-hero__title span{
  display:block;
}

.cb-home-hero__title em{
  color:var(--cb-hero-green);
  font-style:normal;
  text-shadow:0 0 28px rgba(0,127,109,.25);
}

.cb-home-hero__text{
  width:min(570px, 100%);
  margin:24px 0 0;
  color:rgba(255,255,255,.95) !important;
  font-size:19px !important;
  line-height:1.48 !important;
  font-weight:700;
  text-shadow:0 5px 18px rgba(0,0,0,.30);
}

.cb-home-hero__cta{
  width:fit-content;
  min-height:56px;
  margin-top:28px;
  padding:0 28px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(135deg, #00a98d, #007f6d 58%, #006957);
  color:#fff !important;
  text-decoration:none !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:16px;
  line-height:1;
  font-weight:800;
  box-shadow:0 16px 34px rgba(0,127,109,.24);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cb-home-hero__cta:hover,
.cb-home-hero__cta:focus-visible{
  color:#fff !important;
  text-decoration:none !important;
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(0,127,109,.18);
  filter:brightness(1.03);
  outline:none;
}

.cb-home-hero__cta-ico{
  display:none !important;
}

.cb-home-hero__cta svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cb-home-hero__cta-arrow{
  font-size:20px;
  line-height:1;
  transform:translateY(-1px);
}

.cb-home-hero__brands{
  width:min(660px, 100%);
  max-width:100%;
  margin-top:28px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:0;
  flex-flow:row nowrap !important;
  white-space:nowrap;
  overflow:visible;
}

.cb-home-hero__brand{
  flex:0 0 auto;
  min-width:0;
  height:42px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid rgba(255,255,255,.32);
}

.cb-home-hero__brand:first-child{
  padding-left:0;
}

.cb-home-hero__brand:last-child{
  padding-right:0;
  border-right:0;
}

.cb-home-hero__brand img{
  display:block;
  width:auto !important;
  max-width:100%;
  height:30px;
  object-fit:contain;
  filter:grayscale(1) brightness(0) invert(1);
  opacity:.96;
}

.cb-home-hero__brand.is-3m img{height:31px; max-width:70px;}
.cb-home-hero__brand.is-avery img{height:31px; max-width:98px;}
.cb-home-hero__brand.is-arlon img{height:30px; max-width:92px;}
.cb-home-hero__brand.is-kpmf img{height:30px; max-width:92px;}
.cb-home-hero__brand.is-hexis img{height:30px; max-width:84px;}

.cb-home-hero__widget{
  position:relative;
  z-index:4;
  margin-top:-84px;
  padding:0 0 44px;
}

.cb-home-hero .cb-wrap{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
  border-radius:22px;
  box-shadow:0 6px 18px rgba(0,0,0,.045);
}

.cb-home-hero .cb-tabs{
  padding:10px;
  gap:10px;
}

.cb-home-hero .cb-tabbtn{
  border-radius:9px;
}

@media (max-width:1180px){
  .cb-home-hero__stage{
    min-height:620px;
  }
  .cb-home-hero__copy{
    width:min(560px, 100%);
  }
  .cb-home-hero__title{
    font-size:clamp(52px, 5.6vw, 72px);
  }
}

@media (max-width:820px){
  .cb-home-hero__stage{
    min-height:auto;
    padding:58px 16px 126px;
    background:#001012;
  }

  .cb-home-hero__bg-img{
    object-position:center top;
  }

  .cb-home-hero__stage:before{
    background:
      radial-gradient(circle at 55% 28%, rgba(0,127,109,.18), transparent 36%),
      linear-gradient(180deg, rgba(0,10,13,.40) 0%, rgba(0,8,10,.68) 45%, rgba(0,6,8,.88) 100%);
  }

  .cb-home-hero__stage:after{
    height:48%;
    background:linear-gradient(180deg, transparent 0%, rgba(0,8,10,.58) 58%, rgba(0,6,8,.88) 100%);
  }

  .cb-home-hero__inner{
    width:100%;
  }

  .cb-home-hero__copy{
    width:100%;
    margin:0 auto;
    text-align:center;
  }

  .cb-home-hero__title{
    max-width:720px;
    margin:0 auto;
    font-size:clamp(43px, 11.2vw, 72px);
    line-height:.99;
    letter-spacing:-.055em;
  }

  .cb-home-hero__text{
    max-width:650px;
    margin:22px auto 0;
    font-size:clamp(17px, 4.2vw, 23px) !important;
    line-height:1.42 !important;
    font-weight:700;
  }

  .cb-home-hero__cta{
    width:min(100%, 430px);
    min-height:58px;
    margin-top:26px;
    border-radius:10px;
    font-size:18px;
  }

  .cb-home-hero__brands{
    width:100%;
    max-width:760px;
    margin:34px auto 0;
    justify-content:center;
    overflow:visible;
  }

  .cb-home-hero__brand{
    height:38px;
    padding:0 clamp(10px, 3vw, 26px);
  }

  .cb-home-hero__brand.is-3m img{height:29px; max-width:56px;}
  .cb-home-hero__brand.is-avery img{height:28px; max-width:78px;}
  .cb-home-hero__brand.is-arlon img{height:27px; max-width:72px;}
  .cb-home-hero__brand.is-kpmf img{height:27px; max-width:72px;}
  .cb-home-hero__brand.is-hexis img{height:27px; max-width:66px;}

  .cb-home-hero__widget{
    margin-top:-94px;
    padding-bottom:30px;
  }

  .cb-home-hero .cb-wrap{
    width:calc(100% - 20px);
    border-radius:20px;
  }
}

@media (max-width:520px){
  .cb-home-hero__stage{
    padding:46px 12px 112px;
  }

  .cb-home-hero__title{
    font-size:clamp(38px, 11.8vw, 56px);
    line-height:1.02;
  }

  .cb-home-hero__text{
    max-width:94%;
    font-size:17px !important;
  }

  .cb-home-hero__cta{
    width:min(100% - 30px, 390px);
    min-height:56px;
    font-size:17px;
  }

  .cb-home-hero__brands{
    width:calc(100% - 8px);
    margin-top:30px;
    justify-content:space-between;
    gap:0;
  }

  .cb-home-hero__brand{
    height:34px;
    padding:0 9px;
  }

  .cb-home-hero__brand.is-3m img{height:25px; max-width:46px;}
  .cb-home-hero__brand.is-avery img{height:24px; max-width:62px;}
  .cb-home-hero__brand.is-arlon img{height:23px; max-width:56px;}
  .cb-home-hero__brand.is-kpmf img{height:23px; max-width:58px;}
  .cb-home-hero__brand.is-hexis img{height:23px; max-width:54px;}

  .cb-home-hero__widget{
    margin-top:-82px;
  }

  .cb-home-hero .cb-wrap{
    width:calc(100% - 16px);
  }
}

/* =========================================================
   v2.0.3 - Anti micro-zoom texte / font swap
   ========================================================= */
.cb-home-hero__title,
.cb-home-hero__title *,
.cb-home-hero__text,
.cb-home-hero__cta{
  transform:none !important;
  animation:none !important;
  transition:none !important;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,Helvetica,sans-serif !important;
  font-synthesis:none !important;
  -webkit-text-size-adjust:100%;
}

/* =========================================================
   v2.0.2 - Suppression fade/lazy render Elementor/WP Rocket
   ========================================================= */
.cb-home-hero,
.cb-home-hero *,
.cb-home-hero__stage,
.cb-home-hero__inner,
.cb-home-hero__copy,
.cb-home-hero__widget,
.cb-home-hero .cb-wrap{
  visibility:visible !important;
  opacity:1 !important;
  animation:none !important;
  transition:none !important;
  animation-delay:0s !important;
  transition-delay:0s !important;
}

.elementor-element:has(.cb-home-hero),
.elementor-section:has(.cb-home-hero),
.e-con:has(.cb-home-hero),
.elementor-widget-shortcode:has(.cb-home-hero),
.elementor-widget-container:has(.cb-home-hero),
.elementor-shortcode:has(.cb-home-hero),
.elementor-element:has(.cb-home-hero).elementor-invisible,
.elementor-section:has(.cb-home-hero).elementor-invisible,
.e-con:has(.cb-home-hero).elementor-invisible{
  visibility:visible !important;
  opacity:1 !important;
  transform:none !important;
  animation:none !important;
  transition:none !important;
  content-visibility:visible !important;
}

/* =========================================================
   v2.0.0 - Correction agressive de la ligne sous le menu desktop
   La ligne vient du header/menu Elementor/XStore, pas du hero.
   On la neutralise uniquement sur les pages qui contiennent le hero.
   ========================================================= */
@media (min-width:821px){
  body:has(.cb-home-hero) header,
  body:has(.cb-home-hero) #header,
  body:has(.cb-home-hero) .site-header,
  body:has(.cb-home-hero) .header-wrapper,
  body:has(.cb-home-hero) .main-header,
  body:has(.cb-home-hero) .header-main,
  body:has(.cb-home-hero) .header-bottom,
  body:has(.cb-home-hero) .header-bottom-wrapper,
  body:has(.cb-home-hero) .header-main-menu,
  body:has(.cb-home-hero) .menu-wrapper,
  body:has(.cb-home-hero) .navigation-wrapper,
  body:has(.cb-home-hero) .navbar-header,
  body:has(.cb-home-hero) .et_b_header-wrapper,
  body:has(.cb-home-hero) .et_b_header,
  body:has(.cb-home-hero) .et_b_header-menu,
  body:has(.cb-home-hero) .et_b_header-menu .menu,
  body:has(.cb-home-hero) .elementor-location-header,
  body:has(.cb-home-hero) [data-elementor-type="header"],
  body:has(.cb-home-hero) [data-elementor-type="header"] .elementor-section,
  body:has(.cb-home-hero) [data-elementor-type="header"] .elementor-container,
  body:has(.cb-home-hero) [data-elementor-type="header"] .elementor-column,
  body:has(.cb-home-hero) [data-elementor-type="header"] .elementor-widget-wrap{
    border-bottom:0 !important;
    outline:0 !important;
    box-shadow:none !important;
  }

  body:has(.cb-home-hero) header:before,
  body:has(.cb-home-hero) header:after,
  body:has(.cb-home-hero) #header:before,
  body:has(.cb-home-hero) #header:after,
  body:has(.cb-home-hero) .site-header:before,
  body:has(.cb-home-hero) .site-header:after,
  body:has(.cb-home-hero) .header-wrapper:before,
  body:has(.cb-home-hero) .header-wrapper:after,
  body:has(.cb-home-hero) .header-bottom:before,
  body:has(.cb-home-hero) .header-bottom:after,
  body:has(.cb-home-hero) .header-bottom-wrapper:before,
  body:has(.cb-home-hero) .header-bottom-wrapper:after,
  body:has(.cb-home-hero) .header-main-menu:before,
  body:has(.cb-home-hero) .header-main-menu:after,
  body:has(.cb-home-hero) .menu-wrapper:before,
  body:has(.cb-home-hero) .menu-wrapper:after,
  body:has(.cb-home-hero) .navigation-wrapper:before,
  body:has(.cb-home-hero) .navigation-wrapper:after,
  body:has(.cb-home-hero) .et_b_header-wrapper:before,
  body:has(.cb-home-hero) .et_b_header-wrapper:after,
  body:has(.cb-home-hero) .et_b_header:before,
  body:has(.cb-home-hero) .et_b_header:after,
  body:has(.cb-home-hero) .et_b_header-menu:before,
  body:has(.cb-home-hero) .et_b_header-menu:after,
  body:has(.cb-home-hero) .elementor-location-header:before,
  body:has(.cb-home-hero) .elementor-location-header:after,
  body:has(.cb-home-hero) [data-elementor-type="header"]:before,
  body:has(.cb-home-hero) [data-elementor-type="header"]:after,
  body:has(.cb-home-hero) [data-elementor-type="header"] .elementor-section:before,
  body:has(.cb-home-hero) [data-elementor-type="header"] .elementor-section:after{
    content:none !important;
    display:none !important;
    height:0 !important;
    border:0 !important;
    outline:0 !important;
    box-shadow:none !important;
    background:transparent !important;
  }

  /* Le hero recouvre 2px sous le menu pour masquer toute bordure résiduelle du thème. */
  .cb-home-hero{
    margin-top:-20px !important;
    z-index:3;
  }

  .cb-home-hero:before{
    content:"" !important;
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:4px;
    background:#001012;
    z-index:20;
    pointer-events:none;
  }
}
