:root{
  --bleu: #00416C;
  --orange: #F7941D;
  --beige: #F6F0DD;
  --gutter: 20px;
  --margin: 50px;
  --padding: 30px;
  --space-elements: 30px;
  --or: #D0BD8B;
  --or-pale: #FBF9F4;
  --megaspace: calc(var(--margin)*1.5);
  --middlespace: calc(var(--margin)*1.2);
}

html {
  scroll-behavior: smooth;
}

body{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}

/* Offset scroll-to pour compenser le header sticky */
#secteurs,
#performances,
#preuves,
#reponse-globale {
  scroll-margin-top: 90px;
}

@media only screen and (min-width: 1000px) {
  #secteurs,
  #performances,
  #preuves,
  #reponse-globale {
    scroll-margin-top: 120px;
  }
}

/* ****************************************************************************************** */
/*  CONTAINER
/* ****************************************************************************************** */
.container{
  max-width: 1560px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.min{
  max-width: 1500px;
}

.container.nano{
  max-width: 1100px;
}

@media only screen and (min-width: 1000px) {
  .container.mid{
    padding-left: calc(var(--gutter)*1.5);
    padding-right: calc(var(--gutter)*1.5);
  }
}

@media only screen and (min-width: 1480px) {
  .container.mid{
    padding-left: calc(var(--gutter)*3);
    padding-right: calc(var(--gutter)*3);
  }
}

@media only screen and (min-width: 800px) {
  :root{
    --space: 50px;
    --gutter: 30px;
    --margin: 50px;
    --padding: 40px;
    --megaspace: var(--margin);
  }
}

@media only screen and (min-width: 1000px) {
  :root{
    --gutter: 50px;
    --margin: 50px;
    --space: 80px;
    --megaspace: calc(var(--margin)*2);
  }
}

@media only screen and (min-width: 1480px) {
  :root{
    --margin: 80px;
    --megaspace: calc(var(--margin)*2);
  }
}

/* empêche le scroll de la page derrière la popup */
body.no-scroll {
  overflow: hidden;
}
/* optionnel : bloque le scroll quand popup ouverte */
.no-scroll {
  overflow: hidden;
}


.cta{
  background-color: #FFFFFF;
  padding: 10px 25px 10px 10px;
  position: relative;
  border-radius: 320px;
  display: inline-flex;
  color: inherit;
  transition: all .2s ease;
  align-items: center;
  box-shadow: 0;
  flex-direction: row-reverse;
  font-size: 14px;
}

@media only screen and (min-width: 1000px) {
  .cta{
    padding: 10px 10px 10px 25px;
    flex-direction: row;
    font-size: inherit;
  }

}


.cta svg{
  margin-right: 15px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 1000px) {
  .cta svg{
    margin-left: 15px;
    margin-right: 0;
    width: unset;
    height: unset;
  }
}

.cta:hover{
  background-color: var(--bleu);
  color: #FFFFFF !important;
  /*box-shadow: 0 4px 48px 0 rgba(0, 0, 0, 0.05);*/
}


.cta.invert{
  background: #FFFFFF;
}

.cta.invert:hover{
  background: var(--or);
}

.cta svg .svg-round{
  fill: var(--orange);
}

.cta svg .svg-arrow{
  stroke: #FFFFFF;
}

.pretitle{
  font-size: 16px;
  text-transform: uppercase;
  color: var(--bleu);
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}

h2{
  font-weight: 700;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.16rem + 0.69vw, 2rem);
}

.etiquette{
  display: inline-flex;
  padding: 5px 15px;
  text-transform: uppercase;
  background: var(--or);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 30px;
}


ul.checks{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media only screen and (min-width: 1480px) {
  ul.checks{
    gap: var(--space-elements);
  }
}

ul.checks li{
  display: inline-flex;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.7em;
}

ul.checks li::before{
  content: '';
  width: 16px;
  height: 24px;
  background: url("https://www.jeld-wen.fr/getmedia/9a2390e0-cf89-426e-91f4-46feb2d653bb/li.aspx") no-repeat left 5px / 16px transparent;
  margin-right: 15px;
  flex-shrink: 0;
}

/* ****************************************************************************************** */
/*  HEADER
/* ****************************************************************************************** */
#header{
  padding: var(--padding) 0;
  position: sticky;
  top: 0;
  z-index: 6;
  background: #FAF9F8;
  transition: all .1s ease;
  transform: translateY(0);
}

#header .container {
  max-width: 1840px;
}

#header.out{
  transform: translateY(-100%);
}

#header-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
@media only screen and (min-width: 1000px) {
  #header{
    display: block;
  }
}
*/

#header img{
  display: block;
  max-width: 160px;
}

@media only screen and (min-width: 1000px) {
  #header img{
    max-width: unset;
  }
}

#navigation{
  display: none;
}

.openNavigation #navigation{
  display: block;
  position: fixed;
  z-index: 2;
  background: rgba(0,0,0,.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  bottom: 0;
  min-height: 100vh;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (min-width: 1000px) {
  #navigation{
    display: block;
  }
}

#navigation ul{
  display: flex;
  gap: var(--margin);
  align-items: center;
}

.openNavigation #navigation ul{
  background: #FFF;
  flex-direction: column;
  min-height: 100vh;
  align-items: stretch;
  gap: unset;
}

#navigation ul a{
  color: inherit;
  font-size: 14px;
  position: relative;
}


.openNavigation #navigation li + li{
  border-top: 1px solid #cecece;
}

.openNavigation #navigation ul li:not(:last-child) a{
  padding: 20px;
  display: block;
}

/*
#navigation ul li:not(:last-child) a:hover{
  color: var(--bleu) !important;
}
*/

.openNavigation #navigation ul li:last-child a{
  margin: 15px;
}

#navigation ul li:not(:last-child) a::after{
  background: var(--beige);
  opacity: .5;
  width: 110%;
  height: 0;
  content: '';
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -5px;
  left: -5%;
  transition: all .2s ease;
}

#navigation ul li:not(:last-child) a:hover::after{
  height: 80%;
}

#navigation .smartline-menu{
  display: none;
}

@media only screen and (min-width: 1000px) {
  #navigation .smartline-menu.open {
  	position: absolute;
  	left: 0;
  	background: var(--beige);
  	margin-left: -30px;
  	margin-right: -30px;
  	padding: var(--margin);
  	top: 90px;
    display: block;
  }
}

#burger {
	display: flex;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
}

#burger span{
	width: 32px;
	height: 4px;
	margin: 2px;
	display: block;
	background: #000;
	border-radius: 20px;
}

@media only screen and (min-width: 1000px) {
  #burger{
    display: none;
  }
}

/* ****************************************************************************************** */
/* MAIN
/* ****************************************************************************************** */
#main {
	gap: 5rem;
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  #main {
	  gap: 10rem;
  }
}

#main h2{
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem);
  font-weight: 800;
  color: var(--bleu);
}

/* ****************************************************************************************** */
/* HERO
/* ****************************************************************************************** */
.hero{
  background: linear-gradient(180deg, #FAF9F8 0%, #DBDBDD 100%);
}

.hero__inner {
  flex-direction: column-reverse;
	display: flex;
	align-items: center;  
  padding: 3rem 0 8rem 0;
}

@media only screen and (min-width: 1000px) {
  .hero__inner {
    flex-direction: row;
  padding: 3rem 0 5rem 0;
  }
}


@media only screen and (min-width: 1000px) {
  .hero__left {
    width: 50%;
  }
}

  .hero__right {
    width: 50%;
  }

.hero__right img {
	width: 100%;
	height: auto;
	display: block;
}

.hero__left h1{
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 1.45rem + 2.125vw, 4rem);
  color: var(--bleu);
  font-weight: 800;
}

.hero__left h1 em{
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

.hero__left .cta{
  margin-top: 30px;
}

.badge-stack {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
	transform: rotate(-5deg);
}

.hero .hero__badge-row {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) rotate(-5deg) translateY(2rem);
}

.badge-stack__label {
	background: var(--orange);
	color: #FFFFFF;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 10px;
	display: block;
	margin-bottom: -3px;
	z-index: 2;
}

.badge-stack__pill {
	color: #FFFFFF;
	background: var(--bleu);
	padding: 5px 10px;
	border-radius: 10px;
	font-weight: 700;
	/* margin-top: -3px; */
	/* z-index: 1; */
}

.usages-title{
  text-align: center;
  margin-bottom: 2.5rem;
}

.usages-title em {
  color: var(--orange);
}

/* ****************************************************************************************** */
/* CARDS GRID (usages)
/* ****************************************************************************************** */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media only screen and (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;  
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #111;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;  
}

.card:hover .card__img {
  transform: scale(1.06);
  opacity: 0.85;
}

.card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 20px 22px 22px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
}

.card__label {
  color: #ffffff;
  font-weight: 700;
font-size: 1.375rem;
font-size: clamp(1.375rem, 1.275rem + 0.5vw, 1.875rem);
  line-height: 1.3em;
  max-width: 70%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.card__plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  background: #FFF;
}

.card__plus svg path{
  stroke: var(--orange);
}

.card:hover .card__plus {
  background: var(--orange);
  transform: rotate(90deg);
}

.card:hover .card__plus svg path{
  stroke: #FFF;
}

@media only screen and (min-width: 800px) {
  .card__plus {
    width: 46px;
    height: 46px;
  }
}


/* ****************************************************************************************** */
/* INFO
/* ****************************************************************************************** */
.info__inner{
	padding: 2rem;
	background: rgba(247, 148, 29, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  .info__inner{
    padding: 5rem;
    gap: 0;
    flex-direction: row;
  }
}

.info__left {
	display: flex;
	gap: 2rem;
}

@media only screen and (min-width: 1000px) {
  .info__left {
	  width: 40%;
  }
}

.info__quote{
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	line-height: 1.3em;
  color: var(--bleu);
  font-weight: 800;
}

.info__quote p:first-child{
  color: var(--orange);
}

.info__left {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

.info__body {
	font-size: 16px;
	line-height: 1.8em;
}

@media only screen and (min-width: 1000px) {
  .info__body {
	  width: 50%;
  }
}


/* ****************************************************************************************** */
/* CTA EXPERT
/* ****************************************************************************************** */
.performances__inner{
	padding: 4rem 2rem 2rem 2rem;
  gap: 2rem;
  background-color: var(--bleu);
	display: flex;
	justify-content: space-between;
	border-radius: 20px;
  flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  .performances__inner{
	  padding: 6rem;
    gap: 0;
    flex-direction: row;
  }
}

@media only screen and (max-width: 1000px) {
  .performances__inner img{
    max-width: 64px;
  }
}

.performances__inner_left{
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

@media only screen and (min-width: 1000px) {
  .performances__inner_left{
    flex-direction: row;
    gap: 30px;
  }
}

.performances__inner h2{
  color: #FFF !important;
}

.performances__inner h2 span{
  color: var(--orange);
}

.performances__inner .cta{
  margin-top: 30px;
}

.performances .badge-stack {
	font-size: 1rem;
  font-size: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
	margin-bottom: -40px;
}

.performances .badge-stack__label {
	font-size: 1.4em;
	padding: 8px 22px;
	letter-spacing: 2px;
	box-shadow: 0 6px 22px rgba(247, 148, 29, 0.55);
	margin-bottom: -8px;
}

.performances .badge-stack__pill {
	background-color: #FFF;
	color: var(--bleu);
	text-align: center;
	padding: 10px 20px;
}

.perf__list {
	color: #FFF;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.perf__list li{
  position: relative;
  padding-left: 20px;
}

.perf__list li::before{
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	background-color: currentColor;
	mask-image: url('../img/check.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-image: url('../img/check.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	transition: all .2s ease;
}

.performances .cta:hover{
  background: var(--orange);
}

.performances .cta:hover .svg-round{
  fill: #FFF;
}

.performances .cta:hover .svg-arrow{
  stroke: var(--orange);
}


/* ****************************************************************************************** */
/* ABOUT
/* ****************************************************************************************** */
.about__inner{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 3rem;
}

@media only screen and (min-width: 1000px) {
  .about__inner{
    flex-direction: row;
    gap: 0;
  }
}

.about__left {
	display: flex;
  flex-direction: column;
	gap: 30px;
}

@media only screen and (min-width: 1000px) {
  .about__left {
    flex-direction: row;
	width: 45%;
  }
}

.about__left h2 {
margin-bottom: 30px;
}

.about__left p{
  line-height: 1.8em;
}
  
.about__left h2 span{
  color: var(--orange);
}

.about__right{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about__csr{
  margin-top: 30px;
}

@media only screen and (min-width: 1000px) {
  .about__right{
    width: 40%;
  }
}

.about-item{
  padding-left: 30px;
  background: url(../img/check.svg) no-repeat left 5px / 16px transparent;
}

.about-item__title{
  font-weight: 800;
  color: var(--bleu);
  margin-bottom: 10px;
  font-size: 20px;
}

.about-item__body{
  line-height: 1.8em;
}


/* ****************************************************************************************** */
/* ECOVADIS
/* ****************************************************************************************** */
#ecovadis__inner {
	background: #fafafa;
	padding: 50px;
	display: flex;
	justify-content: center;
	border-radius: 20px;
}

/* ****************************************************************************************** */
/* CTA EXPERT
/* ****************************************************************************************** */
#cta-expert-wrapper{
  margin-bottom: var(--margin);
}

@media only screen and (min-width: 1000px) {
  #cta-expert-wrapper{
    margin-bottom: var(--megaspace);
  }
}

#cta-expert{
  padding: var(--padding);
  background: url("https://www.jeld-wen.fr/getmedia/6cec22a9-db87-4a86-8f99-65e3bf02384c/cta-expert-bg.aspx") no-repeat center center / cover transparent;
  display: flex;
  border-radius: 30px;
  color: #FFFFFF;
  flex-direction: column;
}

#cta-expert h2{
  color: #FFF;
}


@media only screen and (min-width: 800px) {
  #cta-expert{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--padding);
  }
}

@media only screen and (min-width: 1000px) {
  #cta-expert{
    padding: var(--margin);
  }
}

@media only screen and (min-width: 800px) {
  #cta-expert-left{
    width: 45%;
  }
}

#cta-expert p{
  margin: var(--padding) 0;
  line-height: 1.8em;
}

@media only screen and (min-width: 1000px) {
  #cta-expert p{
    max-width: 80%;
  }
}

#cta-expert .cta{
  color: #000000;
}


/* ****************************************************************************************** */
/* FOOTER
/* ****************************************************************************************** */
#footer{
  background: #1D446B;
  padding: 30px 0;
}

#footer img{
  display: block;
  max-width: 120px;
}

@media only screen and (min-width: 1000px) {
  #footer img{
    max-width: 240px;
  }
}

@media only screen and (min-width: 1000px) {
  #footer{
    padding: 50px 0;
  }
}

#footer-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer-socials{
  display: flex;
}

#footer-socials a{
  width: 24px;
  height: 24px;
  font-size: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 10px;
  transition: all .2s ease;
}

@media only screen and (min-width: 1000px) {
  #footer-socials a{
    width: 32px;
    height: 32px;
  }
}

@media only screen and (min-width: 1000px) {
  #footer-socials a{
    width: 48px;
    height: 48px;
  }
}
#footer-socials a:hover{
  background-color: var(--azur);
}

#fs-ins{
  background-image: url('https://www.jeld-wen.fr/getmedia/772d54ea-808a-4f0c-a8e3-df1b6d6182fc/instagram@2x.aspx');
}

#fs-in{
  background-image: url('https://www.jeld-wen.fr/getmedia/fec20f2f-7257-495e-9ef1-2b51c329801c/linkedin@2x.aspx');
}


.popup-inner-video{
	padding: 0;
  background: none;
  cursor:
}

.popup-inner-video iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
	/* max-width: 1000px; */
	max-height: 85vh;
	display: block;
}


/* ****************************************************************************************** */
/* USAGE MODAL
/* ****************************************************************************************** */

/* Overlay */
.usage-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.usage-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* Panel (element qui slide) */
.usage-modal__panel {
  position: absolute;
  inset: 0;
  display: flex;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.usage-modal.is-open .usage-modal__panel {
  transform: translateX(0);
}

/* Colonne image gauche */
.usage-modal__visual {
  width: 32%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.usage-modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Colonne contenu droite */
.usage-modal__content {
  flex: 1;
  background: #FAF9F8;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Barre haute sticky */
.usage-modal__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  background: #FAF9F8;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

/* Bouton fermeture */
.usage-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.usage-modal__close:hover {
  background: var(--bleu);
}

/* En-tête usage */
.usage-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 3rem 2rem;
}

.usage-modal__title {
  font-size: clamp(1.75rem, 1.4rem + 1.75vw, 3.25rem);
  color: var(--bleu);
  font-weight: 800;
  flex-shrink: 0;
  width: 40%;
  line-height: 1.15em;
}

.usage-modal__intro {
  color: #555;
  line-height: 1.75em;
  font-size: 15px;
  padding-top: 0.4rem;
}

.usage-modal__header--full {
  flex-direction: column;
  gap: 1rem;
}

.usage-modal__header--full .usage-modal__title {
  width: 100%;
}

.usage-modal__header--full .usage-modal__intro {
  max-width: 600px;
}

/* Grille ERP usages */
.erp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 3rem 2rem;
}

@media only screen and (min-width: 900px) {
  .erp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.erp-grid__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--bleu);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.erp-grid__item:hover {
  box-shadow: 0 4px 16px rgba(0, 65, 108, 0.1);
  border-color: rgba(0, 65, 108, 0.2);
}

.erp-grid__icon {
  flex-shrink: 0;
}

.erp-grid__label {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4em;
  color: var(--bleu);
}

/* Grille produits */
.usage-modal__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 3rem 3rem;
}

/* Carte produit */
.prod-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: box-shadow 0.2s ease;
}

.prod-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.prod-card__name {
  font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.125rem);
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 8px;
  line-height: 1.3em;
}

.prod-card__desc {
  font-size: 13px;
  line-height: 1.65em;
  color: #666;
}

.prod-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 14px;
}

.prod-card__db {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  flex-shrink: 0;
}

.prod-card__db svg {
  flex-shrink: 0;
}

.prod-card__db strong {
  font-weight: 700;
  font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.125rem);
  line-height: 1.2em;
}

.prod-card__db em {
  font-style: normal;
  font-size: 11px;
  display: block;
  opacity: 0.8;
  margin-top: 1px;
}

.prod-card__cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 100px;
  transition: background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.prod-card__cta:hover {
  background: var(--bleu);
}

.prod-card__cta-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
}

.prod-card__new {
  display: inline-block;
  background: var(--beige);
  color: var(--bleu);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.prod-card__bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* Footer modal */
.usage-modal__footer {
  margin: 5rem;
  margin-top: auto;  
}

.usage-modal__footer-inner {
  background: url("https://www.jeld-wen.fr/getmedia/6cec22a9-db87-4a86-8f99-65e3bf02384c/cta-expert-bg.aspx") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 3rem;
  color: #fff;
}

.usage-modal__footer-text h3 {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.usage-modal__footer-text p {
  font-size: 14px;
  line-height: 1.7em;
  max-width: 380px;
  opacity: 0.85;
}


.usage-modal__footer .cta{
  color: var(--bleu);
}

/* Responsive */
@media only screen and (max-width: 1000px) {
  .usage-modal__visual {
    width: 28%;
  }
  .usage-modal__header {
    flex-direction: column;
    padding: 2rem 2rem 1.5rem;
  }
  .usage-modal__title {
    width: 100%;
  }
  .usage-modal__products {
    padding: 0 2rem 2rem;
  }
}

@media only screen and (max-width: 700px) {
  .usage-modal__visual {
    display: none;
  }
  .usage-modal__topbar {
    padding: 14px 20px;
  }
  .usage-modal__header {
    padding: 1.5rem 1.5rem 1rem;
  }
  .usage-modal__products {
    grid-template-columns: 1fr;
    padding: 0 1.5rem 2rem;
  }
  .usage-modal__footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
}
