/* Anderson */
/* DA Juste à temps — inspirée justeatemps.com + logo terracotta */

:root {

  --jat-terracotta: #c36043;

  --jat-terracotta-hover: #a84f36;

  --jat-terracotta-light: #e8a090;

  --jat-cream: #ebe6e3;

  --jat-cream-dark: #e0d8d4;

  --jat-black: #0a0a0a;

  --jat-text: #212529;

  --jat-text-muted: #5c5c5c;

  --jat-white: #ffffff;

  --jat-bg: #ffffff;

  --font-sans: "Futura BT", Futura, "Century Gothic", sans-serif;

  --radius: 4px;

  --shadow: 0 8px 32px rgba(10, 10, 10, 0.08);

  --header-h: 72px;
  --subnav-h: 54px;

  --container: min(1140px, 92vw);

  --transition: 0.25s ease;

}



*,

*::before,

*::after {

  box-sizing: border-box;

}



html {

  scroll-behavior: auto;

  scroll-padding-top: var(--header-h);

}



html.lenis {

  scroll-behavior: auto !important;

}



html.lenis,

html.lenis body {

  height: auto;

}



[id] {

  scroll-margin-top: var(--header-h);

}



body {

  margin: 0;

  font-family: var(--font-sans);

  font-size: 1rem;

  line-height: 1.6;

  color: var(--jat-text);

  background: var(--jat-white);

  -webkit-font-smoothing: antialiased;

}



img {

  max-width: 100%;

  height: auto;

  display: block;

}



a {

  color: var(--jat-terracotta);

  text-decoration: none;

  transition: color var(--transition);

}



a:hover {

  color: var(--jat-terracotta-hover);

}



h1,

h2,

h3,

h4,

.section-title,

.btn,

.nav-link,

.eyebrow {

  text-transform: lowercase;

  font-weight: 700;

  letter-spacing: -0.02em;

}



/* Majuscule en début de titre (1re lettre), le reste reste en minuscules */

h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
.section-title::first-letter,
.services-title::first-letter,
.machines-title::first-letter,
.page-hero__title::first-letter,
.about-pillar__title::first-letter,
.catalog-benefit__title::first-letter,
.machine-item__name::first-letter,
.home-bcorp__title::first-letter,
.simulateur-panel__title::first-letter,
.ft-news__title::first-letter,
.ft-group__title::first-letter,
.footer-col__title::first-letter,
.pricing-card__name::first-letter,
.similar-card__name::first-letter {

  text-transform: uppercase;

}



/* Titres multi-lignes (spans imbriqués) : casse déjà gérée dans le HTML (1re lettre en capitale) */

.hero-title,
.machines-title {

  text-transform: none;

}



.container {

  width: var(--container);

  margin-inline: auto;

}



/* Buttons */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 0.75rem 1.5rem;

  border-radius: var(--radius);

  font-family: var(--font-sans);

  font-weight: 600;

  font-size: 0.95rem;

  text-transform: none;

  border: 2px solid transparent;

  cursor: pointer;

  transition: background var(--transition), color var(--transition), border-color var(--transition);

}



.btn-primary {

  background: var(--jat-terracotta);

  color: var(--jat-cream);

  border-color: var(--jat-terracotta);

}



.btn-primary:hover {

  background: var(--jat-terracotta-hover);

  border-color: var(--jat-terracotta-hover);

  color: var(--jat-white);

}



.btn-outline {

  background: transparent;

  color: var(--jat-terracotta);

  border-color: var(--jat-terracotta);

}



.btn-outline:hover {

  background: var(--jat-terracotta);

  color: var(--jat-cream);

}



.btn-lg {

  padding: 1rem 1.75rem;

  font-size: 1.05rem;

}



.btn-block {

  width: 100%;

}



.link-arrow::after {

  content: " \2192";

}



/* Header */

.site-header {

  position: sticky;

  top: 0;

  z-index: 100;

  background: var(--jat-white);

  border-bottom: 1px solid var(--jat-cream-dark);

  height: var(--header-h);

}



.header-inner {

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  height: var(--header-h);

  gap: 1.5rem;

}



.logo {

  justify-self: start;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  overflow: visible;

}



.logo img {

  display: block;

  height: 52px;

  width: auto;

  max-width: min(280px, 52vw);

  object-fit: contain;

  object-position: left center;

}



.nav-main {

  justify-self: center;

}



.nav-list {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  justify-content: center;

  gap: 0.1rem;

  list-style: none;

  margin: 0;

  padding: 0;

}



.nav-item {

  position: relative;

}



.nav-link {

  background: none;

  border: none;

  font-family: var(--font-sans);

  font-size: 0.9rem;

  font-weight: 500;

  color: var(--jat-text);

  padding: 0.5rem 0.6rem;

  cursor: pointer;

  text-transform: lowercase;

  white-space: nowrap;

  text-decoration: none;

  display: inline-block;

}



.nav-link:hover,

.nav-item:focus-within .nav-link {

  color: var(--jat-terracotta);

}



.dropdown {

  position: absolute;

  top: 100%;

  left: 0;

  min-width: 220px;

  background: var(--jat-white);

  border: 1px solid var(--jat-cream-dark);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  list-style: none;

  margin: 0;

  padding: 0.5rem 0;

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);

}



.has-dropdown:hover .dropdown,

.has-dropdown:focus-within .dropdown {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.dropdown a {

  display: block;

  padding: 0.5rem 1rem;

  color: var(--jat-text);

  font-size: 0.9rem;

  text-transform: lowercase;

}



.dropdown a:hover {

  background: var(--jat-bg);

  color: var(--jat-terracotta);

}



.header-actions {

  justify-self: end;

  display: flex;

  align-items: center;

  gap: 1rem;

}



.header-phone {

  font-weight: 600;

  color: var(--jat-text);

  font-size: 0.9rem;

  white-space: nowrap;

}



.header-phone:hover {

  color: var(--jat-terracotta);

}



.nav-toggle {

  display: none;

  flex-direction: column;

  gap: 5px;

  background: none;

  border: none;

  padding: 0.5rem;

  cursor: pointer;

}



.nav-toggle span {

  display: block;

  width: 24px;

  height: 2px;

  background: var(--jat-text);

}



/* Hero */

.main--home {

  position: relative;

}



.main--home > :not(.hero-bg):not(.rse-bg):not(.bcorp-bg) {

  position: relative;

  z-index: 1;

}



.hero-bg {

  position: fixed;

  inset: 0;

  z-index: 0;

  height: 100vh;

  pointer-events: none;

  background-color: var(--jat-black);

  background-image: url("../assets/hero-office.webp");

  background-size: cover;

  background-position: center 40%;

  background-repeat: no-repeat;

}



.hero {

  position: relative;

  background-color: #1a1816;

  background-image: url("../assets/hero-lounge.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  color: var(--jat-cream);

  padding: 4rem 0 5rem;

  overflow: hidden;

}



.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background: linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.35) 100%);

  pointer-events: none;

}



.hero-grid {

  position: relative;

  z-index: 1;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;

}



.eyebrow {

  color: var(--jat-terracotta-light);

  font-size: 0.85rem;

  letter-spacing: 0.12em;

  margin: 0 0 1rem;

}



.hero-title {

  font-size: clamp(2.25rem, 5vw, 3.5rem);

  line-height: 1.1;

  margin: 0 0 1.5rem;

  font-weight: 700;

}



.hero-line {

  display: block;

}



.hero-verb,

.hero-object {

  color: var(--jat-terracotta);

}



.hero-keep {
  white-space: nowrap;
}



.hero-line--muted .hero-target {

  color: var(--jat-cream);

  opacity: 0.85;

  font-weight: 500;

}



.hero-lead {

  font-size: 1.1rem;

  max-width: 32rem;

  opacity: 0.9;

  margin-bottom: 2rem;

  font-weight: 400;

}



.hero-cta {

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  position: relative;

  z-index: 80;

}



.hero-visual {

  display: flex;

  justify-content: center;

}



.hero-card {

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(195, 96, 67, 0.45);

  border-radius: 12px;

  padding: 2.5rem;

  text-align: center;

  backdrop-filter: blur(8px);

  max-width: 320px;

}



.hero-card-badge {

  display: inline-block;

  background: var(--jat-terracotta);

  color: var(--jat-cream);

  font-size: 0.75rem;

  font-weight: 600;

  padding: 0.35rem 0.75rem;

  border-radius: 999px;

  margin-bottom: 1.5rem;

  text-transform: lowercase;

}



.hero-card-icon {

  width: 4rem;

  height: 4rem;

  margin: 0 auto 1rem;

  border-radius: 50%;

  background: linear-gradient(145deg, var(--jat-terracotta), var(--jat-terracotta-hover));

  opacity: 0.9;

}



.hero-card-icon:empty {

  display: block;

}



.hero-card p {

  margin: 0;

  opacity: 0.85;

  font-size: 0.95rem;

}



/* Sections */

.section {

  padding: 4.5rem 0;

}



.section--cream {

  background: var(--jat-bg);

}



.section--dark {

  background: var(--jat-black);

  color: var(--jat-cream);

}



.rse-bg {

  position: fixed;

  inset: 0;

  z-index: 0;

  height: 100vh;

  pointer-events: none;

  background-color: var(--jat-black);

  background-image: url("../assets/rse-recolte.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.45s ease, visibility 0.45s ease;

}



.rse-bg.is-active {

  opacity: 1;

  visibility: visible;

}



#rse.section--dark {

  position: relative;

  z-index: 1;

  background: transparent;

}



#rse.section--dark::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.9) 0%,

      rgba(10, 10, 10, 0.75) 45%,

      rgba(10, 10, 10, 0.5) 100%

    );

  pointer-events: none;

}



#rse .split-section {

  position: relative;

  z-index: 1;

}



.section--cta {

  background: linear-gradient(135deg, #1a1210, var(--jat-black));

  color: var(--jat-cream);

}



#simulateur.section--cta {

  position: relative;

  background-color: var(--jat-black);

  background-image:

    linear-gradient(

      180deg,

      rgba(10, 10, 10, 0.55) 0%,

      rgba(10, 10, 10, 0.78) 50%,

      rgba(10, 10, 10, 0.88) 100%

    ),

    url("../assets/simulateur-pause-cafe.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



#simulateur .container {

  position: relative;

  z-index: 1;

}



#simulateur .section-lead {

  margin-left: auto;

  margin-right: auto;

  text-align: center;

}



.section--logos {

  padding: 3rem 0;

  border-top: 1px solid var(--jat-cream-dark);

  background: var(--jat-white);

}



.main--home #avis {

  background: var(--jat-white);

}



.section-title {

  font-size: clamp(1.75rem, 3vw, 2.25rem);

  margin: 0 0 1rem;

  color: var(--jat-text);

}



.section-title--light {

  color: var(--jat-cream);

}



.section-lead {

  font-size: 1.05rem;

  color: var(--jat-text-muted);

  max-width: 42rem;

  margin-bottom: 2rem;

}



.section-lead--light {

  color: rgba(235, 230, 227, 0.85);

}



.text-center {

  text-align: center;

}



.section-header {

  margin-bottom: 2.5rem;

}



.section-header-row {

  display: flex;

  justify-content: space-between;

  align-items: baseline;

  flex-wrap: wrap;

  gap: 1rem;

  margin-bottom: 2rem;

}



.section-cta {

  text-align: center;

  margin-top: 2rem;

}



/* Cards */

.cards-grid {

  display: grid;

  gap: 1.5rem;

}



.cards-grid--4 {

  grid-template-columns: repeat(4, 1fr);

}



.cards-grid--2 {

  grid-template-columns: repeat(2, 1fr);

}



/* Services — split panel + liste */

.section-services {

  padding-top: 3.5rem;

  padding-bottom: 3.5rem;

  background: var(--jat-white);

}



.services-shell {

  display: grid;

  grid-template-columns: minmax(280px, 36%) 1fr;

  gap: 0;

  align-items: stretch;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.08);

  border: 1px solid var(--jat-cream-dark);

}



.services-panel {

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  gap: 1.25rem;

  min-height: 420px;

  padding: clamp(2rem, 4vw, 3rem);

  color: var(--jat-cream);

  background-color: var(--jat-black);

  background-image:

    linear-gradient(

      180deg,

      rgba(10, 10, 10, 0.35) 0%,

      rgba(10, 10, 10, 0.72) 45%,

      rgba(10, 10, 10, 0.92) 100%

    ),

    url("../assets/services-accompagnement.webp");

  background-size: cover;

  background-position: center 30%;

  background-repeat: no-repeat;

  overflow: hidden;

}



.services-panel > * {

  position: relative;

  z-index: 1;

}



.services-eyebrow {

  margin: 0;

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: lowercase;

  color: var(--jat-terracotta-light);

}



.services-title {

  margin: 0;

  font-size: clamp(1.75rem, 3vw, 2.35rem);

  line-height: 1.12;

  font-weight: 700;

  text-transform: lowercase;

  letter-spacing: -0.02em;

  color: var(--jat-cream);

}



.services-lead {

  margin: 0;

  font-size: 1rem;

  line-height: 1.65;

  color: rgba(235, 230, 227, 0.88);

}



.services-highlights {

  list-style: none;

  margin: 0.5rem 0 0;

  padding: 0;

  display: flex;

  flex-direction: column;

  gap: 0.65rem;

}



.services-highlights li {

  font-size: 0.9rem;

  color: rgba(235, 230, 227, 0.8);

  padding-left: 1rem;

  border-left: 2px solid var(--jat-terracotta);

}



.services-highlights strong {

  color: var(--jat-terracotta-light);

  font-weight: 700;

}

.services-highlights a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

.services-highlights a:hover {
  color: var(--jat-cream);
}

.services-highlights a:hover strong {
  color: var(--jat-terracotta);
}



.services-panel .btn-primary {

  align-self: flex-start;

  margin-top: 0.5rem;

}



.services-stack {

  list-style: none;

  margin: 0;

  padding: 0;

  display: flex;

  flex-direction: column;

  background: var(--jat-bg);

}



.services-stack > li + li {

  border-top: 1px solid var(--jat-cream-dark);

}



.service-row {

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 1.25rem;

  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);

  background: var(--jat-white);

  transition: background var(--transition), padding-left var(--transition);

}



.service-row:hover {

  background: var(--jat-bg);

  padding-left: calc(clamp(1.25rem, 3vw, 2rem) + 6px);

}



.service-row__icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 3.25rem;

  height: 3.25rem;

  border-radius: 50%;

  flex-shrink: 0;

  color: var(--jat-terracotta);

  background: rgba(195, 96, 67, 0.1);

  border: 1px solid rgba(195, 96, 67, 0.2);

  transition: background var(--transition), color var(--transition), transform var(--transition);

}



.service-row:hover .service-row__icon {

  color: var(--jat-cream);

  background: var(--jat-terracotta);

  transform: scale(1.05);

}



.service-row__icon svg {

  width: 1.4rem;

  height: 1.4rem;

}



.service-row__body h3 {

  margin: 0 0 0.35rem;

  font-size: 1.1rem;

  font-weight: 700;

  text-transform: lowercase;

  color: var(--jat-text);

}



.service-row__body p {

  margin: 0;

  font-size: 0.92rem;

  line-height: 1.55;

  color: var(--jat-text-muted);

  max-width: 36rem;

}



.service-row__arrow {

  font-size: 1.25rem;

  font-weight: 600;

  color: var(--jat-terracotta);

  opacity: 0;

  transform: translateX(-8px);

  transition: opacity var(--transition), transform var(--transition);

}



.service-row:hover .service-row__arrow {

  opacity: 1;

  transform: translateX(0);

}



@media (max-width: 900px) {

  .services-shell {

    grid-template-columns: 1fr;

  }



  .services-panel {

    text-align: center;

    align-items: center;

  }



  .services-panel .btn-primary {

    align-self: center;

  }



  .services-highlights {

    align-items: center;

  }



  .services-highlights li {

    text-align: left;

  }

}



@media (max-width: 560px) {

  .section-services {

    padding-top: 2.5rem;

    padding-bottom: 2.5rem;

  }



  .services-shell {

    border-radius: 16px;

  }



  .service-row {

    grid-template-columns: auto 1fr;

    gap: 1rem;

  }



  .service-row__arrow {

    display: none;

  }

}



/* Pages catalogue */

.page-hero {

  padding: calc(var(--header-h) + 2rem) 0 clamp(2rem, 5vw, 3rem);

  background:

    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(195, 96, 67, 0.12), transparent 55%),

    var(--jat-bg);

  border-bottom: 1px solid var(--jat-cream-dark);

}



.main--fontaines {

  position: relative;

}



.main--fontaines > :not(.fontaines-hero-bg) {

  position: relative;

  z-index: 1;

}



.fontaines-hero-bg {

  position: fixed;

  inset: 0;

  z-index: 0;

  height: 100vh;

  pointer-events: none;

  background-color: #1a1816;

  background-image: url("../assets/fontaines-hero.webp");

  background-size: cover;

  background-position: center 35%;

  background-repeat: no-repeat;

}



.page-hero--fontaines {

  position: relative;

  background: transparent;

  border-bottom: none;

}



.page-hero--fontaines::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.88) 0%,

      rgba(10, 10, 10, 0.62) 42%,

      rgba(10, 10, 10, 0.4) 100%

    );

  pointer-events: none;

}



.page-hero--fontaines .page-hero__inner {

  position: relative;

  z-index: 1;

}



.page-hero--fontaines .breadcrumb,

.page-hero--fontaines .breadcrumb a {

  color: rgba(235, 230, 227, 0.72);

}



.page-hero--fontaines .breadcrumb a:hover {

  color: var(--jat-cream);

}



.page-hero--fontaines .page-hero__eyebrow {

  color: var(--jat-terracotta-light);

  background: rgba(255, 255, 255, 0.12);

}



.page-hero--fontaines .page-hero__title {

  color: var(--jat-cream);

}



.page-hero--fontaines .page-hero__title span {

  color: var(--jat-terracotta-light);

}



.page-hero--fontaines .page-hero__lead {

  color: rgba(235, 230, 227, 0.88);

}



.page-hero--fontaines .btn-outline {

  color: var(--jat-cream);

  border-color: rgba(255, 255, 255, 0.5);

}



.page-hero--fontaines .btn-outline:hover {

  color: var(--jat-black);

  background: var(--jat-cream);

  border-color: var(--jat-cream);

}



.main--machines {

  position: relative;

}



.main--machines > :not(.machines-hero-bg) {

  position: relative;

  z-index: 1;

}



.page-hero--machines {

  position: relative;

  background-color: #1a1816;

  background-image: url("../assets/hero-office.webp");

  background-size: cover;

  background-position: center 35%;

  background-repeat: no-repeat;

  border-bottom: none;

}



.page-hero--machines::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.88) 0%,

      rgba(10, 10, 10, 0.62) 42%,

      rgba(10, 10, 10, 0.4) 100%

    );

  pointer-events: none;

}



.page-hero--machines .page-hero__inner {

  position: relative;

  z-index: 1;

}



.page-hero--machines .breadcrumb,

.page-hero--machines .breadcrumb a {

  color: rgba(235, 230, 227, 0.72);

}



.page-hero--machines .breadcrumb a:hover {

  color: var(--jat-cream);

}



.page-hero--machines .page-hero__eyebrow {

  color: var(--jat-terracotta-light);

  background: rgba(255, 255, 255, 0.12);

}



.page-hero--machines .page-hero__title {

  color: var(--jat-cream);

}



.page-hero--machines .page-hero__title span {

  color: var(--jat-terracotta-light);

}



.page-hero--machines .page-hero__lead {

  color: rgba(235, 230, 227, 0.88);

}



.page-hero--machines .btn-outline {

  color: var(--jat-cream);

  border-color: rgba(255, 255, 255, 0.5);

}



.page-hero--machines .btn-outline:hover {

  color: var(--jat-black);

  background: var(--jat-cream);

  border-color: var(--jat-cream);

}



.main--distributeurs {

  position: relative;

}



.main--distributeurs > :not(.distributeurs-hero-bg) {

  position: relative;

  z-index: 1;

}



.distributeurs-hero-bg {

  position: fixed;

  inset: 0;

  z-index: 0;

  height: 100vh;

  pointer-events: none;

  background-color: #1a1816;

  background-image: url("../assets/distributeurs-hero.webp");

  background-size: cover;

  background-position: center 40%;

  background-repeat: no-repeat;

}



.page-hero--distributeurs {

  position: relative;

  background: transparent;

  border-bottom: none;

}



.page-hero--distributeurs::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.88) 0%,

      rgba(10, 10, 10, 0.62) 42%,

      rgba(10, 10, 10, 0.35) 100%

    );

  pointer-events: none;

}



.page-hero--distributeurs .page-hero__inner {

  position: relative;

  z-index: 1;

}



.page-hero--distributeurs .breadcrumb,

.page-hero--distributeurs .breadcrumb a {

  color: rgba(235, 230, 227, 0.72);

}



.page-hero--distributeurs .breadcrumb a:hover {

  color: var(--jat-cream);

}



.page-hero--distributeurs .page-hero__eyebrow {

  color: var(--jat-terracotta-light);

  background: rgba(255, 255, 255, 0.12);

}



.page-hero--distributeurs .page-hero__title {

  color: var(--jat-cream);

}



.page-hero--distributeurs .page-hero__title span {

  color: var(--jat-terracotta-light);

}



.page-hero--distributeurs .page-hero__lead {

  color: rgba(235, 230, 227, 0.88);

}



.page-hero--distributeurs .btn-outline {

  color: var(--jat-cream);

  border-color: rgba(255, 255, 255, 0.5);

}



.page-hero--distributeurs .btn-outline:hover {

  color: var(--jat-black);

  background: var(--jat-cream);

  border-color: var(--jat-cream);

}



.main--about {

  position: relative;

}



.main--about > :not(.about-impact-bg):not(.bcorp-bg) {

  position: relative;

  z-index: 1;

}



.page-hero--about {
  position: relative;
  background: transparent;
  border-bottom: none;
}

.page-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 14, 10, 0.88) 0%,
      rgba(10, 14, 10, 0.68) 45%,
      rgba(10, 14, 10, 0.52) 100%
    ),
    url("../assets/about-hero-equipe.webp");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-hero--about .page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero--about .breadcrumb,
.page-hero--about .breadcrumb a {
  color: rgba(235, 230, 227, 0.72);
}

.page-hero--about .breadcrumb a:hover {
  color: var(--jat-cream);
}

.page-hero--about .page-hero__eyebrow {
  color: var(--jat-terracotta-light);
  background: rgba(255, 255, 255, 0.12);
}

.page-hero--about .page-hero__title {
  color: var(--jat-cream);
}

.page-hero--about .page-hero__title span {
  color: var(--jat-terracotta-light);
}

.page-hero--about .page-hero__lead {
  color: rgba(235, 230, 227, 0.88);
}

.page-hero--about .btn-outline {
  color: var(--jat-cream);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-hero--about .btn-outline:hover {
  color: var(--jat-black);
  background: var(--jat-cream);
  border-color: var(--jat-cream);
}



.section-eyebrow {

  display: inline-block;

  margin-bottom: 0.75rem;

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: lowercase;

  color: var(--jat-terracotta);

}



.section-eyebrow--light {

  color: #b8ddb0;

}



.about-section-header {

  max-width: 36rem;

  margin: 0 auto clamp(2rem, 5vw, 3rem);

  text-align: center;

}



.about-mission {

  position: relative;

  z-index: 1;

  background: var(--jat-bg);

}



.about-mission::before {

  display: none;

}



.about-mission .split-section {

  position: relative;

  z-index: 1;

}



.about-mission p:last-child {

  margin: 0;

  color: var(--jat-text);

  line-height: 1.7;

}



.about-mission .eco-list li {

  border-bottom-color: var(--jat-cream-dark);

}



.about-pillars-section {

  background: var(--jat-bg);

}



.about-pillars {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: clamp(1rem, 2.5vw, 1.5rem);

}



.about-pillar {

  padding: clamp(1.35rem, 3vw, 1.75rem);

  background: var(--jat-white);

  border: 1px solid var(--jat-cream-dark);

  border-radius: calc(var(--radius) + 6px);

  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.04);

  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);

}



.about-pillar:hover {

  transform: translateY(-3px);

  border-color: rgba(195, 96, 67, 0.25);

  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);

}



.about-pillar__icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 3rem;

  height: 3rem;

  margin-bottom: 1.15rem;

  border-radius: 50%;

  color: #3d7a45;

  background: rgba(61, 122, 69, 0.1);

  border: 1px solid rgba(61, 122, 69, 0.18);

}



.about-pillar__icon svg {

  width: 1.35rem;

  height: 1.35rem;

}



.about-pillar__title {

  margin: 0 0 0.5rem;

  font-size: 1rem;

  font-weight: 600;

  text-transform: lowercase;

  color: var(--jat-text);

}



.about-pillar__text {

  margin: 0;

  font-size: 0.88rem;

  line-height: 1.55;

  color: var(--jat-text-muted);

}



.about-stats {

  background: linear-gradient(135deg, #1a2e1a, #0f1a0f);

}



.about-stats .stat-value {

  color: var(--jat-white);

}



.about-stats .stat-label {

  color: var(--jat-white);

  opacity: 0.92;

}



.about-impact-bg {

  position: fixed;

  inset: 0;

  z-index: 0;

  height: 100vh;

  pointer-events: none;

  background-color: var(--jat-black);

  background-image: url("../assets/rse-recolte.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.45s ease, visibility 0.45s ease;

}



.about-impact-bg.is-active {

  opacity: 1;

  visibility: visible;

}



.about-impact {

  position: relative;

  z-index: 1;

  background: transparent;

}



.about-impact::before {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 0;

  background:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.92) 0%,

      rgba(10, 10, 10, 0.78) 50%,

      rgba(10, 10, 10, 0.65) 100%

    );

  pointer-events: none;

}



.about-impact .split-section {

  position: relative;

  z-index: 1;

}



.about-commitments {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;

}



.about-commitment {

  padding: 1.25rem 1.35rem;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: calc(var(--radius) + 4px);

  backdrop-filter: blur(4px);

}



.about-commitment h3 {

  margin: 0 0 0.4rem;

  font-size: 0.95rem;

  font-weight: 600;

  text-transform: lowercase;

  color: var(--jat-cream);

}



.about-commitment p {

  margin: 0;

  font-size: 0.85rem;

  line-height: 1.5;

  color: rgba(235, 230, 227, 0.78);

}



.about-cert {

  background: var(--jat-white);

}



.about-bcorp {

  background: var(--jat-bg);

  border-top: 1px solid var(--jat-cream-dark);

  padding-block: clamp(3.5rem, 7vw, 5rem);

}



.about-bcorp__inner {

  display: grid;

  grid-template-columns: auto 1fr;

  gap: clamp(2rem, 5vw, 4rem);

  align-items: center;

  padding: clamp(2rem, 4vw, 3rem);

  background: var(--jat-white);

  border-radius: calc(var(--radius) + 6px);

  border: 1px solid var(--jat-cream-dark);

  box-shadow:

    0 4px 6px rgba(26, 20, 17, 0.04),

    0 20px 48px rgba(26, 20, 17, 0.1);

}



.about-bcorp__badge {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: clamp(8.5rem, 20vw, 11rem);

  height: clamp(8.5rem, 20vw, 11rem);

  padding: 1.5rem;

  border-radius: 50%;

  background: var(--jat-white);

  border: 2px solid var(--jat-cream-dark);

  box-shadow:

    0 8px 24px rgba(26, 20, 17, 0.12),

    0 0 0 6px rgba(195, 96, 67, 0.08);

}



.about-bcorp__badge img {

  width: 100%;

  max-width: 7.5rem;

  height: auto;

  filter: contrast(1.15);

}



.about-bcorp__content .section-eyebrow {

  font-size: 0.8rem;

  letter-spacing: 0.14em;

  color: var(--jat-terracotta);

}



.about-bcorp__content .section-title {

  color: var(--jat-black);

  font-weight: 600;

  font-size: clamp(1.85rem, 3.5vw, 2.5rem);

  line-height: 1.15;

}



.about-bcorp__content .section-lead {

  color: var(--jat-text);

  font-size: 1.08rem;

  line-height: 1.7;

  max-width: 38rem;

}



.about-bcorp__content .about-cert__list li {

  color: var(--jat-text);

  font-size: 0.95rem;

  font-weight: 500;

}



.about-bcorp__content .about-cert__list li::before {

  width: 7px;

  height: 7px;

  background: var(--jat-terracotta);

  box-shadow: 0 0 0 3px rgba(195, 96, 67, 0.15);

}



.about-values {

  background: var(--jat-bg);

}



.main--about > .section:last-of-type {

  background: var(--jat-white);

}



.about-cert__inner {

  display: grid;

  grid-template-columns: 1fr auto;

  gap: clamp(2rem, 5vw, 4rem);

  align-items: center;

}



.about-cert__list {

  margin: 1.25rem 0 0;

  padding: 0;

  list-style: none;

}



.about-cert__list li {

  position: relative;

  padding-left: 1.25rem;

  margin-bottom: 0.55rem;

  font-size: 0.92rem;

  color: var(--jat-text-muted);

}



.about-cert__list li::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0.55em;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--jat-terracotta);

}



.about-cert__badge img {

  width: clamp(7rem, 18vw, 10rem);

  height: auto;

}



.about-values-grid {

  margin: 0;

}



.about-cta {

  background:

    linear-gradient(

      135deg,

      rgba(26, 46, 26, 0.95),

      rgba(15, 26, 15, 0.98)

    );

  color: var(--jat-cream);

}



.about-cta .btn-outline {

  color: var(--jat-cream);

  border-color: rgba(255, 255, 255, 0.45);

}



.about-cta .btn-outline:hover {

  color: var(--jat-black);

  background: var(--jat-cream);

  border-color: var(--jat-cream);

}



@media (max-width: 1024px) {

  .about-pillars {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 768px), (prefers-reduced-motion: reduce) {

  .about-impact-bg {

    display: none;

  }



  .about-impact {

    background-color: var(--jat-black);

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.92) 0%,

        rgba(10, 10, 10, 0.78) 50%,

        rgba(10, 10, 10, 0.65) 100%

      ),

      url("../assets/rse-recolte.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

  }



  .about-impact::before {

    display: none;

  }



  .page-hero--about {

    background-color: #1a1816;

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 14, 10, 0.88) 0%,

        rgba(10, 14, 10, 0.68) 45%,

        rgba(10, 14, 10, 0.52) 100%

      ),

      url("../assets/about-hero-equipe.webp");

    background-size: cover;

    background-position: center 42%;

    background-repeat: no-repeat;

  }



  .page-hero--about::before {

    display: none;

  }

}



@media (max-width: 768px) {

  .about-pillars {

    grid-template-columns: 1fr;

  }



  .about-commitments {

    grid-template-columns: 1fr;

  }



  .about-cert__inner {

    grid-template-columns: 1fr;

    text-align: center;

  }



  .about-bcorp__inner {

    grid-template-columns: 1fr;

    text-align: center;

    padding: clamp(2rem, 6vw, 2.5rem);

  }



  .about-bcorp__badge {

    margin: 0 auto;

  }



  .about-bcorp__content .section-lead {

    margin-left: auto;

    margin-right: auto;

  }



  .about-bcorp__content .about-cert__list {

    display: inline-block;

    text-align: left;

    margin-left: auto;

    margin-right: auto;

  }



  .about-cert__badge {

    order: -1;

  }



  .about-cert__badge img {

    margin: 0 auto;

  }



  .about-cert__list {

    text-align: left;

  }

}



.breadcrumb {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0.35rem 0.5rem;

  margin: 0 0 1.25rem;

  padding: 0;

  list-style: none;

  font-size: 0.82rem;

  color: var(--jat-text-muted);

}



.breadcrumb a {

  color: var(--jat-text-muted);

  text-decoration: none;

  transition: color 0.2s ease;

}



.breadcrumb a:hover {

  color: var(--jat-terracotta);

}



.breadcrumb li:not(:last-child)::after {

  content: "/";

  margin-left: 0.5rem;

  opacity: 0.45;

}



.page-hero__eyebrow {

  display: inline-block;

  margin-bottom: 0.75rem;

  padding: 0.35rem 0.9rem;

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: lowercase;

  color: var(--jat-terracotta);

  background: rgba(195, 96, 67, 0.1);

  border-radius: 999px;

}



.page-hero__title {

  margin: 0 0 1rem;

  font-size: clamp(2rem, 5vw, 3.25rem);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -0.03em;

  text-transform: lowercase;

  color: var(--jat-text);

}



.page-hero__title span {

  display: block;

  color: var(--jat-terracotta);

  font-weight: 600;

}



.page-hero__lead {

  margin: 0;

  max-width: 36rem;

  font-size: clamp(1rem, 2vw, 1.125rem);

  line-height: 1.7;

  color: var(--jat-text-muted);

}



.page-hero__actions {

  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;

  margin-top: 1.75rem;

}



.catalog-steps {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;

  margin-bottom: clamp(2rem, 5vw, 3rem);

}



.catalog-step {

  padding: 1.25rem 1.35rem;

  background: var(--jat-white);

  border: 1px solid var(--jat-cream-dark);

  border-radius: calc(var(--radius) + 2px);

}



.catalog-step__num {

  display: inline-block;

  margin-bottom: 0.5rem;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.1em;

  color: var(--jat-terracotta);

}



.catalog-step__title {

  margin: 0 0 0.35rem;

  font-size: 1rem;

  font-weight: 600;

  color: var(--jat-text);

}



.catalog-step__text {

  margin: 0;

  font-size: 0.88rem;

  line-height: 1.5;

  color: var(--jat-text-muted);

}



.catalog-filters {

  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;

  margin-bottom: 2rem;

}



.catalog-filters__btn {

  padding: 0.55rem 1.1rem;

  font-family: var(--font-sans);

  font-size: 0.88rem;

  font-weight: 500;

  color: var(--jat-text-muted);

  background: var(--jat-white);

  border: 1px solid var(--jat-cream-dark);

  border-radius: 999px;

  cursor: pointer;

  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;

}



.catalog-filters__btn:hover {

  border-color: var(--jat-terracotta-light);

  color: var(--jat-terracotta);

}



.catalog-filters__btn.is-active {

  color: var(--jat-white);

  background: var(--jat-terracotta);

  border-color: var(--jat-terracotta);

}



.machine-item.is-hidden {

  display: none;

}



.catalog-visual {

  width: 100%;

  height: 200px;

  max-height: 220px;

  border-radius: calc(var(--radius) + 4px);

  background-size: cover;

  background-position: center;

}



.catalog-visual--fountain-1 {

  background-image: linear-gradient(145deg, #e8f4f8, #7eb8c9);

}



.catalog-visual--fountain-2 {

  background-image: linear-gradient(145deg, #f0f0f0, #9aa5ad);

}



.catalog-visual--fountain-3 {

  background-image: linear-gradient(145deg, #dceef5, #5a9fb5);

}



.catalog-visual--fountain-4 {

  background-image: linear-gradient(145deg, #eef5f8, #6b8f9e);

}



.catalog-visual--vending-1 {

  background-image: linear-gradient(145deg, #2a2a2a, #5c5c5c);

}



.catalog-visual--vending-2 {

  background-image: linear-gradient(145deg, #1a1a1a, #4a4a4a);

}



.catalog-visual--vending-3 {

  background-image: linear-gradient(145deg, #3d2914, #8b6914);

}



.catalog-visual--coffee-1 {

  background-image: linear-gradient(145deg, #3d2314, #8b5a3c);

}



.catalog-visual--coffee-2 {

  background-image: linear-gradient(145deg, #2d1810, #6b4423);

}



.catalog-visual--coffee-3 {

  background-image: linear-gradient(145deg, #1e4d3a, #5a9e7a);

}



.catalog-visual--coffee-4 {

  background-image: linear-gradient(145deg, #f5f0eb, #c9b8a8);

}



.catalog-benefits {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: clamp(1rem, 2.5vw, 1.5rem);

  margin: clamp(2.5rem, 6vw, 4rem) 0;

}



.catalog-benefit {

  display: flex;

  flex-direction: column;

  gap: 1.15rem;

  padding: clamp(1.35rem, 3vw, 1.75rem);

  background: var(--jat-white);

  border: 1px solid var(--jat-cream-dark);

  border-radius: calc(var(--radius) + 6px);

  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.04);

  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);

}



.catalog-benefit:hover {

  transform: translateY(-3px);

  border-color: rgba(195, 96, 67, 0.25);

  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);

}



.catalog-benefit__icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 3rem;

  height: 3rem;

  border-radius: 50%;

  flex-shrink: 0;

  color: var(--jat-terracotta);

  background: rgba(195, 96, 67, 0.1);

  border: 1px solid rgba(195, 96, 67, 0.18);

  transition: background var(--transition), color var(--transition), transform var(--transition);

}



.catalog-benefit:hover .catalog-benefit__icon {

  color: var(--jat-cream);

  background: var(--jat-terracotta);

  transform: scale(1.05);

}



.catalog-benefit__icon svg {

  width: 1.35rem;

  height: 1.35rem;

}



.catalog-benefit__body {

  display: flex;

  flex-direction: column;

  gap: 0.45rem;

}



.catalog-benefit__title {

  margin: 0;

  font-size: 1rem;

  font-weight: 600;

  line-height: 1.3;

  letter-spacing: -0.01em;

  text-transform: lowercase;

  color: var(--jat-text);

}



.catalog-benefit__text {

  margin: 0;

  font-size: 0.88rem;

  line-height: 1.55;

  color: var(--jat-text-muted);

}



.catalog-cta-band {

  text-align: center;

  padding: clamp(2rem, 5vw, 3rem);

  margin-top: 1rem;

  background: linear-gradient(135deg, #1f1411, var(--jat-black));

  border-radius: calc(var(--radius) + 4px);

  color: var(--jat-cream);

}



.catalog-cta-band--fontaines {

  position: relative;

  background-color: var(--jat-black);

  background-image:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.82) 0%,

      rgba(10, 10, 10, 0.68) 45%,

      rgba(10, 10, 10, 0.55) 100%

    ),

    url("../assets/fontaines-cta.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



.catalog-cta-band--distributeurs {

  position: relative;

  background-color: var(--jat-black);

  background-image:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.82) 0%,

      rgba(10, 10, 10, 0.68) 45%,

      rgba(10, 10, 10, 0.55) 100%

    ),

    url("../assets/distributeurs-cta.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



.catalog-cta-band--machines {

  position: relative;

  background-color: var(--jat-black);

  background-image:

    linear-gradient(

      105deg,

      rgba(10, 10, 10, 0.82) 0%,

      rgba(10, 10, 10, 0.68) 45%,

      rgba(10, 10, 10, 0.55) 100%

    ),

    url("../assets/hero-office.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

}



/* Accueil — sections service & humain */

.home-problem__head {

  max-width: 46rem;

  margin: 0 auto clamp(2rem, 4vw, 2.75rem);

  text-align: center;

}

.problem-grid {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: clamp(0.65rem, 1.25vw, 0.85rem);

  max-width: 52rem;

  margin-inline: auto;

}

.problem-grid .catalog-benefit {

  flex-direction: row;

  align-items: flex-start;

  gap: 1rem 1.15rem;

  padding: clamp(1.15rem, 2.2vw, 1.4rem) clamp(1.2rem, 2.5vw, 1.45rem);

  background: var(--jat-bg);

  border: 1px solid rgba(10, 10, 10, 0.07);

  border-radius: var(--radius-lg);

  box-shadow: none;

  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out),
    background 0.28s var(--ease-out);

}

.problem-grid .catalog-benefit::before {

  display: none;

}

.problem-grid .catalog-benefit:hover {

  transform: translateY(-6px);

  background: var(--jat-white);

  border-color: rgba(195, 96, 67, 0.38);

  box-shadow:
    0 20px 40px -12px rgba(10, 10, 10, 0.18),
    0 0 0 1px rgba(195, 96, 67, 0.12);

}

.problem-grid .catalog-benefit__icon {

  width: 2.65rem;

  height: 2.65rem;

  margin-top: 0.1rem;

  border-radius: 12px;

  background: rgba(195, 96, 67, 0.07);

  border: none;

  color: var(--jat-terracotta);

  transition:
    transform 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    color 0.28s var(--ease-out);

}

.problem-grid .catalog-benefit:hover .catalog-benefit__icon {

  transform: scale(1.08);

  background: var(--jat-terracotta);

  color: var(--jat-cream);

}

.problem-grid .catalog-benefit__icon svg {

  width: 1.2rem;

  height: 1.2rem;

}

.problem-grid .catalog-benefit__body {

  gap: 0.35rem;

  min-width: 0;

}

.problem-grid .catalog-benefit__title {

  font-size: clamp(0.98rem, 1.8vw, 1.05rem);

  font-weight: 650;

  letter-spacing: -0.02em;

  line-height: 1.35;

}

.problem-grid .catalog-benefit__text {

  font-size: 0.84rem;

  line-height: 1.6;

  color: var(--jat-text-muted);

}

@media (max-width: 640px) {

  .problem-grid {

    grid-template-columns: 1fr;

    max-width: none;

  }

}

.problem-capture {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(135deg, rgba(195, 96, 67, 0.08) 0%, rgba(195, 96, 67, 0.04) 100%);
  border: 1px solid rgba(195, 96, 67, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px -20px rgba(195, 96, 67, 0.35);
}

.problem-capture__text {
  margin: 0;
  flex: 1 1 14rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--jat-text);
}

.problem-capture .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .problem-capture {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .problem-capture .btn {
    width: 100%;
  }
}

.problem-accroche {

  position: relative;

  margin: clamp(2.75rem, 5vw, 4rem) auto 0;

  max-width: 52rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: clamp(1rem, 2vw, 1.5rem);

  text-align: center;

  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3.75rem);

  background:
    radial-gradient(130% 150% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(150deg, #cf6a4b 0%, var(--jat-terracotta) 45%, #9f4329 100%);

  border-radius: clamp(20px, 3vw, 32px);

  border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    0 30px 60px -24px rgba(159, 67, 41, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  overflow: hidden;

  isolation: isolate;

}

.problem-accroche::before {

  content: "";

  position: absolute;

  top: -40%;

  right: -15%;

  width: 60%;

  height: 160%;

  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);

  filter: blur(10px);

  z-index: -1;

  pointer-events: none;

}

.problem-accroche::after {

  content: "\201D";

  position: absolute;

  bottom: clamp(-2.5rem, -3vw, -1.75rem);

  right: clamp(0.5rem, 2.5vw, 1.75rem);

  font-family: var(--font-display);

  font-size: clamp(7rem, 16vw, 11rem);

  line-height: 1;

  color: rgba(255, 255, 255, 0.12);

  z-index: -1;

  pointer-events: none;

}

.problem-accroche__tag {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  padding: 0.4rem 1rem;

  font-family: var(--font-base, inherit);

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--jat-white);

  background: rgba(255, 255, 255, 0.16);

  border: 1px solid rgba(255, 255, 255, 0.28);

  border-radius: 999px;

  backdrop-filter: blur(4px);

}

.problem-accroche__tag::before {

  content: "";

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--jat-white);

  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);

}

.problem-accroche__text {

  margin: 0;

  font-family: var(--font-display);

  font-size: clamp(1.5rem, 3.6vw, 2.3rem);

  font-weight: 600;

  line-height: 1.35;

  letter-spacing: -0.01em;

  color: var(--jat-cream);

  text-wrap: balance;

}

.problem-accroche__text strong {

  position: relative;

  color: var(--jat-white);

  font-weight: 700;

  white-space: nowrap;

}

.problem-accroche__text strong::after {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0.02em;

  height: 0.16em;

  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.35));

  border-radius: 2px;

}

@media (max-width: 560px) {

  .problem-accroche__text strong {

    white-space: normal;

  }

}

.human-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: calc(var(--radius) + 6px);

}

.human-gallery {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0.6rem;

}

.human-gallery img {

  height: auto;

  display: block;

  position: relative;

  z-index: 0;

  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);

}

.human-gallery img:hover {

  transform: scale(1.03);

  z-index: 1;

  box-shadow: 0 18px 40px -18px rgba(10, 10, 10, 0.45);

}

.human-gallery img:first-child {

  grid-column: 1 / -1;

  aspect-ratio: 16 / 9;

}

.human-gallery img:nth-child(2),

.human-gallery img:nth-child(3) {

  aspect-ratio: 4 / 3;

}

#humain .services-highlights li {

  color: var(--jat-text);

}

#humain .services-highlights strong {

  color: var(--jat-terracotta);

}

#humain .services-highlights + .btn {

  margin-top: 1.75rem;

}

.solutions-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: clamp(1.25rem, 2.5vw, 1.75rem);

}

.solution-card {

  position: relative;

  display: flex;

  flex-direction: column;

  border-radius: 20px;

  overflow: hidden;

  color: var(--jat-text);

  background: var(--jat-white);

  border: 1px solid rgba(10, 10, 10, 0.06);

  box-shadow:
    0 1px 2px rgba(10, 10, 10, 0.04),
    0 20px 44px -30px rgba(10, 10, 10, 0.5);

  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);

}

.solution-card:hover {

  transform: translateY(-8px);

  border-color: rgba(195, 96, 67, 0.22);

  box-shadow:
    0 2px 4px rgba(10, 10, 10, 0.05),
    0 38px 64px -32px rgba(10, 10, 10, 0.55);

}

.solution-card__media {

  position: relative;

  display: block;

  height: clamp(200px, 22vw, 250px);

  overflow: hidden;

}

.solution-card__media::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(10, 10, 10, 0.42), transparent 58%);

  pointer-events: none;

}

.solution-card__img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.7s var(--ease-out);

}

.solution-card:hover .solution-card__img {

  transform: scale(1.08);

}

.solution-card__tag {

  position: absolute;

  left: 1rem;

  top: 1rem;

  z-index: 1;

  padding: 0.4rem 0.9rem;

  font-size: 0.68rem;

  font-weight: 600;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: var(--jat-white);

  background: rgba(255, 255, 255, 0.16);

  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  border-radius: 999px;

}

.solution-card__body {

  display: flex;

  flex-direction: column;

  flex: 1;

  padding: clamp(1.45rem, 2.5vw, 1.9rem);

}

.solution-card__title {

  margin: 0 0 0.5rem;

  font-family: var(--font-display);

  font-size: clamp(1.2rem, 2.2vw, 1.45rem);

  font-weight: 600;

  letter-spacing: -0.01em;

  color: var(--jat-black);

}

.solution-card__text {

  margin: 0 0 1.5rem;

  font-size: 0.92rem;

  line-height: 1.6;

  color: var(--jat-text-muted);

}

.solution-card__cta {

  display: inline-flex;

  align-items: center;

  gap: 0.6rem;

  margin-top: auto;

  font-weight: 600;

  font-size: 0.9rem;

  color: var(--jat-terracotta);

}

.solution-card__cta svg {

  display: none;

}

@media (max-width: 880px) {

  .solutions-grid {

    grid-template-columns: 1fr;

  }

}



.catalog-cta-band h2 {

  margin: 0 0 0.75rem;

  font-size: clamp(1.35rem, 3vw, 1.75rem);

  font-weight: 500;

}



.catalog-cta-band p {

  margin: 0 auto 1.5rem;

  max-width: 28rem;

  font-size: 0.95rem;

  opacity: 0.85;

}



.catalog-cta-band__actions {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 0.75rem;

}



.nav-link--active {

  color: var(--jat-terracotta) !important;

}



@media (max-width: 768px) {

  .catalog-steps,

  .catalog-benefits {

    grid-template-columns: 1fr;

  }

}



/* Machines — style catalogue horizontal */

.section-machines {

  background: var(--jat-white);

}



.machines-header {

  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);

  padding-bottom: clamp(2rem, 4vw, 2.75rem);

  border-bottom: 1px solid var(--jat-cream-dark);

}



.machines-header__inner {

  max-width: 42rem;

  margin: 0 auto;

  text-align: center;

}



.machines-eyebrow {

  display: inline-block;

  margin: 0 0 1.25rem;

  padding: 0.4rem 1rem;

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: lowercase;

  color: var(--jat-terracotta);

  background: rgba(195, 96, 67, 0.1);

  border: 1px solid rgba(195, 96, 67, 0.18);

  border-radius: 999px;

}



.machines-title {

  margin: 0;

  font-size: clamp(2rem, 4.5vw, 3rem);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -0.03em;

  text-transform: lowercase;

  color: var(--jat-text);

}



.machines-title__line {

  display: block;

}



.machines-title__line--accent {

  margin-top: 0.15em;

  color: var(--jat-terracotta);

  font-weight: 600;

}



.machines-lead {

  margin: 1.5rem auto 0;

  max-width: 34rem;

  font-size: clamp(1rem, 2vw, 1.125rem);

  line-height: 1.7;

  color: var(--jat-text-muted);

  font-weight: 400;

}



.machines-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);

}



.machine-item {

  margin: 0;

}



.machine-item__link {

  display: grid;

  grid-template-columns: minmax(110px, 38%) 1fr;

  gap: 1rem 1.75rem;

  align-items: center;

  height: 100%;

  color: inherit;

  text-decoration: none;

}



.machine-item__link:focus-visible {

  outline: 2px solid var(--jat-terracotta);

  outline-offset: 4px;

  border-radius: 4px;

}



.machine-item__media {

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 200px;

  padding: 0.5rem;

}



.machine-item__media img,
.machine-item__img {

  width: 100%;

  height: auto;

  max-height: 220px;

  object-fit: contain;

  transition: opacity 0.4s ease, transform 0.4s ease;

}



.machine-item__media--swap {

  position: relative;

}



.machine-item__media--swap .machine-item__img {

  display: block;

}



.machine-item__media--swap .machine-item__img--hover {

  position: absolute;

  inset: 0.5rem;

  margin: auto;

  width: calc(100% - 1rem);

  max-height: 220px;

  opacity: 0;

  pointer-events: none;

}



@media (hover: hover) {

  .machine-item__media--swap:hover .machine-item__img--default {

    opacity: 0;

    transform: scale(0.98);

  }



  .machine-item__media--swap:hover .machine-item__img--hover {

    opacity: 1;

    transform: scale(1.02);

  }

}



.machine-item__media:not(.machine-item__media--swap):hover img {

  transform: scale(1.03);

}



.machine-item__content {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  text-align: left;

  padding: 0.25rem 0;

}



.machine-item__name {

  margin: 0 0 0.35rem;

  font-size: clamp(1.65rem, 3vw, 2.15rem);

  font-weight: 700;

  line-height: 1.1;

  letter-spacing: -0.03em;

  text-transform: lowercase;

  color: var(--jat-text);

}



.machine-item__tagline {

  margin: 0 0 1rem;

  font-size: 1rem;

  font-weight: 700;

  line-height: 1.3;

  text-transform: lowercase;

  color: var(--jat-text);

}



.machine-item__desc {

  margin: 0 0 1.5rem;

  max-width: 32ch;

  font-size: 0.95rem;

  line-height: 1.65;

  font-weight: 400;

  color: var(--jat-text-muted);

}



.machine-item__stats {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1rem 1.5rem;

  width: 100%;

  max-width: 280px;

  margin-bottom: 1.25rem;

}



.machine-item__stat {

  display: flex;

  flex-direction: column;

  gap: 0.35rem;

}



.machine-item__stat-value {

  font-size: clamp(1.85rem, 3.5vw, 2.5rem);

  font-weight: 700;

  line-height: 1;

  letter-spacing: -0.03em;

  font-variant-numeric: tabular-nums;

  color: var(--jat-text);

}



.machine-item__stat-label {

  font-size: 0.82rem;

  line-height: 1.35;

  color: var(--jat-text-muted);

}



.machine-item__cta {

  font-size: 0.95rem;

  font-weight: 600;

  text-transform: lowercase;

  color: var(--jat-terracotta);

  text-decoration: underline;

  text-underline-offset: 5px;

  transition: color var(--transition);

}



.machine-item__link:hover .machine-item__cta {

  color: var(--jat-terracotta-hover);

}

.machine-item__badge,
.machine-detail__badge {
  display: inline-block;
  background: var(--jat-terracotta);
  color: var(--jat-cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  text-transform: lowercase;
  line-height: 1.2;
}

.machine-item__media {
  position: relative;
}

.machine-item__media .machine-item__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.18);
}

.machine-detail__badge {
  vertical-align: middle;
  margin-left: 0.5rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}

/* Tunnel problématique — 3 étapes (#simulateur) */
.problematique-wizard {
  width: 100%;
  margin-top: 0.25rem;
}

.problematique-wizard__step.is-hidden {
  display: none !important;
}

.problematique-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.5vw, 0.75rem);
  margin-bottom: 0.85rem;
}

.problematique-choice {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--jat-cream);
  font-family: inherit;
  font-size: clamp(0.88rem, 1.8vw, 0.96rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.problematique-choice--wide {
  grid-column: 1 / -1;
}

.problematique-choice:hover {
  border-color: rgba(195, 96, 67, 0.45);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.problematique-choice.is-selected {
  border-color: rgba(195, 96, 67, 0.75);
  background: rgba(195, 96, 67, 0.2);
  box-shadow:
    0 0 0 2px rgba(195, 96, 67, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.problematique-other {
  margin-bottom: 0.85rem;
}

.problematique-other.is-hidden {
  display: none !important;
}

.problematique-other__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: rgba(235, 230, 227, 0.82);
}

.problematique-other__input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  color: var(--jat-text);
  font-size: 0.95rem;
}

.problematique-other__input:focus {
  outline: none;
  border-color: rgba(195, 96, 67, 0.55);
  box-shadow: 0 0 0 3px rgba(195, 96, 67, 0.22);
}

.problematique-wizard__next {
  width: 100%;
  max-width: none;
}

.problematique-wizard__next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.problematique-wizard__recap {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(235, 230, 227, 0.88);
}

.problematique-wizard__recap strong {
  color: var(--jat-cream);
  font-weight: 700;
  text-transform: lowercase;
}

.problematique-wizard__back {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0;
  border: none;
  background: none;
  color: rgba(235, 230, 227, 0.72);
  font-family: inherit;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}

.problematique-wizard__back:hover {
  color: var(--jat-cream);
}

.simulateur-panel__secondary {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(235, 230, 227, 0.62);
}

.simulateur-panel__secondary a {
  color: rgba(235, 230, 227, 0.82);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease-out);
}

.simulateur-panel__secondary a:hover {
  color: var(--jat-cream);
}

.simulateur-panel__secondary.is-hidden,
.simulateur-panel__lead.is-hidden {
  display: none !important;
}

.simulateur-step.is-active {
  border-color: rgba(195, 96, 67, 0.55);
  background: rgba(195, 96, 67, 0.14);
}

.simulateur-step.is-done {
  opacity: 0.72;
}

.simulateur-step.is-done .simulateur-step__num {
  background: rgba(235, 230, 227, 0.92);
  color: var(--jat-terracotta);
}

@media (max-width: 640px) {
  .problematique-choices {
    grid-template-columns: 1fr;
  }

  .problematique-choice--wide {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .problematique-wizard {
    align-self: stretch;
    width: 100%;
    max-width: min(100%, 28rem);
  }
}

/* Formulaire rappel — section problématique (accueil) */
.problematique-form {
  width: 100%;
  max-width: none;
  margin-top: 0.25rem;
}

.problematique-form__card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 48px -28px rgba(10, 10, 10, 0.65);
}

.problematique-form__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--jat-terracotta), var(--jat-terracotta-light));
}

.problematique-form__card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 96, 67, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.problematique-form__label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.85rem;
  font-size: clamp(0.76rem, 1.6vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(235, 230, 227, 0.9);
}

.problematique-form__combo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 14px 36px -18px rgba(10, 10, 10, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  transition: box-shadow 0.25s var(--ease-out);
}

.problematique-form__combo:focus-within {
  box-shadow:
    0 0 0 3px rgba(195, 96, 67, 0.28),
    0 16px 40px -16px rgba(10, 10, 10, 0.5),
    inset 0 0 0 1px rgba(195, 96, 67, 0.35);
}

.problematique-form__input-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-inline: 0.55rem 0.35rem;
}

.problematique-form__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(195, 96, 67, 0.12);
  color: var(--jat-terracotta);
  pointer-events: none;
}

.problematique-form__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  min-height: 2.85rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--jat-text);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.problematique-form__input::placeholder {
  color: rgba(10, 10, 10, 0.38);
  font-weight: 400;
}

.problematique-form__input:focus {
  outline: none;
  box-shadow: none;
}

.problematique-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 2.95rem;
  width: auto;
  max-width: none;
  padding-inline: clamp(1.2rem, 2.5vw, 1.85rem);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 28px -12px rgba(195, 96, 67, 0.85);
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    background 0.2s var(--ease-out);
}

.problematique-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(195, 96, 67, 0.9);
}

.problematique-form__submit-icon {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}

.problematique-form__submit:hover .problematique-form__submit-icon {
  transform: translateX(2px);
}

.problematique-form__hint {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
  font-size: clamp(0.72rem, 1.6vw, 0.8rem);
  line-height: 1.45;
  color: rgba(235, 230, 227, 0.72);
}

.problematique-form__hint::before {
  content: "";
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--jat-terracotta-light);
  box-shadow: 0 0 0 3px rgba(195, 96, 67, 0.22);
}

.problematique-form__error {
  margin: 0.75rem 0 0;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #ffd4cc;
  background: rgba(195, 96, 67, 0.2);
  border: 1px solid rgba(255, 180, 168, 0.38);
  border-radius: var(--radius-md);
}

.problematique-form__error.is-hidden,
.problematique-form.is-hidden,
.problematique-form__success.is-hidden {
  display: none !important;
}

.problematique-form__success {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.1rem, 2.5vw, 1.35rem);
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(235, 230, 227, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 36px -24px rgba(10, 10, 10, 0.55);
  animation: problematique-success-in 0.45s var(--ease-out) both;
}

.problematique-form__success-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(195, 96, 67, 0.22);
  color: var(--jat-terracotta-light);
}

.problematique-form__success-text {
  margin: 0;
  padding-top: 0.35rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--jat-cream);
}

@keyframes problematique-success-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .problematique-form__combo {
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: calc(var(--radius-lg) + 2px);
  }

  .problematique-form__input-wrap {
    padding: 0.35rem 0.65rem 0.35rem 0.45rem;
  }

  .problematique-form__submit {
    width: 100%;
    min-height: 3.15rem;
  }

  .problematique-form__submit-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .problematique-form,
  .problematique-form__success {
    align-self: stretch;
    width: 100%;
    max-width: min(100%, 28rem);
  }

  .problematique-form__card {
    width: 100%;
    text-align: left;
  }

  .problematique-form__hint {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .problematique-form__card {
    padding: 1rem;
    border-radius: var(--radius-lg);
  }

  .problematique-form__icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .problematique-form__input {
    min-height: 2.65rem;
    font-size: 0.95rem;
  }

  .problematique-form__submit {
    min-height: 3rem;
    font-size: 0.92rem;
    padding-inline: 1rem;
  }
}

@media (min-width: 1024px) {
  .simulateur-panel__content .problematique-form__card {
    padding: 1.75rem 1.85rem 1.55rem;
  }

  .problematique-form__combo {
    padding: 0.4rem;
  }

  .problematique-form__input-wrap {
    padding-inline: 0.65rem 0.45rem;
  }

  .problematique-form__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .problematique-form__input {
    min-height: 3rem;
    font-size: 1.08rem;
  }

  .problematique-form__submit {
    min-height: 3.15rem;
    padding-inline: 2rem;
  }
}



.machines-cta {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 0.75rem;

  margin: 3rem 0 0;

  text-align: center;

}



@media (max-width: 900px) {

  .machines-grid {

    grid-template-columns: 1fr;

    gap: 3rem;

  }

}



@media (max-width: 560px) {

  .machines-header {

    margin-bottom: 1.5rem;

    padding-bottom: 0;

  }



  .machines-header__inner {

    text-align: center;

  }



  .machines-lead {

    margin-inline: auto;

    text-align: center;

  }



  .machine-item__link {

    grid-template-columns: 1fr;

    gap: 1.25rem;

    text-align: center;

  }



  .machine-item__content {

    align-items: center;

    text-align: center;

  }



  .machine-item__desc {

    max-width: none;

  }



  .machine-item__stats {

    max-width: 100%;

  }

}



/* Split / eco */

.split-section {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;

}



.eco-list {

  list-style: none;

  margin: 0;

  padding: 0;

}



.eco-list li {

  padding: 1rem 0;

  border-bottom: 1px solid rgba(235, 230, 227, 0.15);

  font-size: 1.05rem;

}



.eco-list strong {

  color: var(--jat-terracotta);

  font-size: 1.5rem;

  margin-right: 0.5rem;

}



/* Stats */

.stats-band {

  position: relative;

  z-index: 1;

  background: var(--jat-terracotta);

  color: var(--jat-cream);

  padding: 3rem 0;

}



.stats-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;

  text-align: center;

}



.stat-value {

  display: block;

  font-size: 2.5rem;

  font-weight: 700;

  line-height: 1.2;

  font-variant-numeric: tabular-nums;

}



.stat-label {

  font-size: 0.9rem;

  opacity: 0.9;

  text-transform: lowercase;

}



/* Testimonials */

.testimonials {

  position: relative;

  display: grid;

  max-width: 720px;

  margin: 0 auto 1.5rem;

}



.testimonial {

  grid-area: 1 / 1;

  margin: 0;

  text-align: center;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: opacity 0.5s ease, visibility 0.5s ease;

}



.testimonial.is-active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}



.testimonial p {

  font-size: 1.25rem;

  font-style: italic;

  margin-bottom: 1rem;

}



.testimonial footer {

  color: var(--jat-text-muted);

  font-size: 0.9rem;

}



.carousel-dots {

  display: flex;

  justify-content: center;

  gap: 0.5rem;

}



.carousel-dots button {

  width: 10px;

  height: 10px;

  border-radius: 50%;

  border: none;

  background: var(--jat-cream-dark);

  cursor: pointer;

  padding: 0;

}



.carousel-dots button.is-active {

  background: var(--jat-terracotta);

}



/* Logos */

.logos-row {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 1rem 1.5rem;

  margin-top: 1.5rem;

}



.client-logo-wrap {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 7rem;

  min-height: 4.5rem;

  padding: 0.85rem 1.25rem;

  border-radius: calc(var(--radius) + 4px);

  cursor: default;

  transition:

    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),

    background 0.35s ease,

    box-shadow 0.35s ease;

}



.client-logo-wrap:hover {

  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.85);

  box-shadow: 0 12px 28px rgba(195, 96, 67, 0.18);

}



.client-logo {

  display: block;

  height: 2.35rem;

  width: auto;

  max-width: 7.5rem;

  object-fit: contain;

  opacity: 0.72;

  filter: grayscale(35%);

  transition:

    opacity 0.35s ease,

    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),

    filter 0.35s ease;

}



.client-logo--wide {

  max-width: 9rem;

  height: 2.6rem;

}



.client-logo--tiktok {

  height: 2.6rem;

  max-width: 2.6rem;

}



.client-logo-wrap:hover .client-logo {

  opacity: 1;

  filter: grayscale(0%);

  transform: scale(1.1);

}



/* Contact */

.section-contact {

  padding: clamp(3rem, 7vw, 5rem) 0;

  background:

    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(195, 96, 67, 0.1), transparent 55%),

    var(--jat-white);

}



.contact-header {

  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);

}



.contact-eyebrow {

  display: block;

  margin-bottom: 0.5rem;

  font-size: 0.8rem;

  font-weight: 500;

  letter-spacing: 0.14em;

  text-transform: lowercase;

  color: var(--jat-terracotta);

}



.contact-title {

  margin: 0;

  font-size: clamp(1.85rem, 4vw, 2.5rem);

  font-weight: 400;

  line-height: 1.1;

  letter-spacing: -0.02em;

  color: var(--jat-text);

}



.contact-layout {

  display: grid;

  grid-template-columns: minmax(260px, 0.95fr) 1.15fr;

  gap: 1.25rem;

  align-items: stretch;

}



.contact-info {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  padding: clamp(1.5rem, 3vw, 2rem);

  color: var(--jat-cream);

  background: linear-gradient(160deg, #1f1411 0%, var(--jat-terracotta) 100%);

  border-radius: calc(var(--radius) + 4px);

}



.contact-info__lead {

  margin: 0;

  font-size: 1rem;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.88);

}



.contact-offices {

  display: flex;

  flex-direction: column;

  gap: 0.75rem;

}



.contact-office {

  display: flex;

  flex-direction: column;

  gap: 0.2rem;

  padding: 1rem 1.1rem;

  text-decoration: none;

  color: inherit;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: calc(var(--radius) + 2px);

  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;

}



.contact-office:hover {

  background: rgba(255, 255, 255, 0.16);

  border-color: rgba(255, 255, 255, 0.28);

  transform: translateX(4px);

}



.contact-office__city {

  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--jat-terracotta-light);

}



.contact-office__value {

  font-size: 1.15rem;

  font-weight: 500;

  letter-spacing: 0.02em;

}



.contact-email {

  margin-top: auto;

  font-size: 0.95rem;

  font-weight: 500;

  color: var(--jat-white);

  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  align-self: flex-start;

  padding-bottom: 0.15rem;

  transition: border-color 0.25s ease, color 0.25s ease;

}



.contact-email:hover {

  color: var(--jat-cream);

  border-color: var(--jat-cream);

}



.contact-form {

  display: grid;

  gap: 1rem;

  padding: clamp(1.5rem, 3vw, 2rem);

  background: var(--jat-bg);

  border: 1px solid var(--jat-cream-dark);

  border-radius: calc(var(--radius) + 4px);

  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);

}



.contact-form__title {

  margin: 0 0 0.25rem;

  font-size: 1.05rem;

  font-weight: 500;

  color: var(--jat-text);

}



.contact-form__row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 1rem;

}



.contact-field span {

  display: block;

  font-size: 0.8rem;

  font-weight: 600;

  margin-bottom: 0.4rem;

  text-transform: lowercase;

  letter-spacing: 0.04em;

  color: var(--jat-text-muted);

}



.contact-field input,

.contact-field textarea {

  width: 100%;

  padding: 0.85rem 1rem;

  border: 1px solid var(--jat-cream-dark);

  border-radius: calc(var(--radius) + 2px);

  font-family: var(--font-sans);

  font-size: 1rem;

  color: var(--jat-text);

  background: var(--jat-white);

  transition: border-color 0.25s ease, box-shadow 0.25s ease;

}



.contact-field textarea {

  resize: vertical;

  min-height: 7rem;

}



.contact-field input::placeholder,

.contact-field textarea::placeholder {

  color: rgba(92, 92, 92, 0.55);

}



.contact-field input:focus,

.contact-field textarea:focus {

  outline: none;

  border-color: var(--jat-terracotta);

  box-shadow: 0 0 0 3px rgba(195, 96, 67, 0.15);

}



.contact-form .btn-block {

  margin-top: 0.5rem;

  padding: 0.95rem 1.5rem;

  font-size: 1rem;

}



.form-feedback {

  margin: 0.85rem 0 0;

  padding: 0.75rem 1rem;

  font-size: 0.88rem;

  line-height: 1.5;

  color: #2f6b39;

  background: rgba(61, 122, 69, 0.1);

  border: 1px solid rgba(61, 122, 69, 0.25);

  border-radius: calc(var(--radius) + 2px);

  opacity: 0;

  transform: translateY(4px);

  transition: opacity var(--transition), transform var(--transition);

}



.form-feedback.is-visible {

  opacity: 1;

  transform: none;

}

.form-feedback.is-error {
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  border-color: rgba(180, 35, 24, 0.22);
}



.ft-news .form-feedback {

  color: var(--jat-cream);

  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.25);

}



@media (max-width: 768px) {

  .contact-layout {

    grid-template-columns: 1fr;

  }



  .contact-form__row {

    grid-template-columns: 1fr;

  }

}



/* Footer */

.site-footer {

  position: relative;

  z-index: 1;

  background: var(--jat-white);

  color: var(--jat-black);

  padding: 0;

  overflow: hidden;

}



.footer-eyebrow {

  display: block;

  margin-bottom: 0.4rem;

  font-size: 0.75rem;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: lowercase;

  color: rgba(10, 10, 10, 0.65);

}



.footer-newsletter-band {

  padding: clamp(2rem, 5vw, 2.75rem) 0;

  background: var(--jat-white);

  border-bottom: 1px solid rgba(10, 10, 10, 0.08);

}



.footer-newsletter-band__inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;

  flex-wrap: wrap;

}



.footer-newsletter-band__title {

  margin: 0;

  max-width: 22rem;

  font-size: clamp(1.1rem, 2.5vw, 1.35rem);

  font-weight: 500;

  line-height: 1.35;

  color: var(--jat-black);

}



.footer-newsletter-form {

  display: flex;

  flex: 1;

  min-width: min(100%, 22rem);

  max-width: 28rem;

  gap: 0.5rem;

  padding: 0.35rem;

  background: var(--jat-white);

  border-radius: calc(var(--radius) + 4px);

  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.1);

}



.footer-newsletter-form input {

  flex: 1;

  min-width: 0;

  padding: 0.75rem 1rem;

  border: none;

  border-radius: var(--radius);

  background: transparent;

  color: var(--jat-text);

  font-family: var(--font-sans);

  font-size: 0.95rem;

}



.footer-newsletter-form input:focus {

  outline: none;

}



.footer-newsletter-form .btn {

  flex-shrink: 0;

  padding: 0.75rem 1.25rem;

}



.footer-main {

  display: grid;

  grid-template-columns: 1.4fr 1fr;

  gap: clamp(2rem, 5vw, 4rem);

  padding: clamp(2.5rem, 6vw, 3.5rem) 0;

}



.footer-logo {

  display: inline-block;

  margin-bottom: 1rem;

}



.footer-logo img {

  display: block;

  height: 2rem;

  width: auto;

  filter: brightness(0);

  opacity: 0.9;

}



.footer-tagline {

  margin: 0 0 1.5rem;

  max-width: 20rem;

  font-size: 0.95rem;

  line-height: 1.55;

  opacity: 0.85;

}



.footer-phones {

  display: flex;

  flex-direction: column;

  gap: 0.65rem;

}



.footer-cert {

  margin-top: 1.5rem;

}



.footer-cert img {

  display: block;

  width: 5.5rem;

  height: auto;

}



.footer-phone {

  display: inline-flex;

  align-items: baseline;

  gap: 0.5rem;

  font-size: 1.05rem;

  font-weight: 600;

  color: var(--jat-black);

  text-decoration: none;

  transition: color 0.25s ease, transform 0.25s ease;

}



.footer-phone span {

  font-size: 0.72rem;

  font-weight: 500;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  opacity: 0.6;

}



.footer-phone:hover {

  color: var(--jat-terracotta);

  transform: translateX(4px);

}



.footer-nav {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2rem;

}



.footer-col__title {

  margin: 0 0 1.15rem;

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 0.1em;

  text-transform: lowercase;

  color: var(--jat-black);

}



.footer-col ul {

  list-style: none;

  margin: 0;

  padding: 0;

}



.footer-col li {

  margin-bottom: 0.55rem;

}



.footer-col a {

  position: relative;

  display: inline-block;

  font-size: 0.92rem;

  color: var(--jat-black);

  opacity: 0.88;

  text-decoration: none;

  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;

}



.footer-col a::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -2px;

  width: 0;

  height: 1px;

  background: var(--jat-black);

  transition: width 0.3s ease;

}



.footer-col a:hover {

  opacity: 1;

  color: var(--jat-terracotta);

  transform: translateX(3px);

}



.footer-col a:hover::after {

  width: 100%;

  background: var(--jat-terracotta);

}



.footer-bottom {

  border-top: 1px solid rgba(10, 10, 10, 0.08);

  padding: 1.15rem 0;

  background: var(--jat-white);

}



.footer-bottom__inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  flex-wrap: wrap;

}



.footer-bottom p {

  margin: 0;

  font-size: 0.8rem;

  opacity: 0.75;

}



.footer-bottom__note {

  font-size: 0.72rem;

  opacity: 0.55;

}



@media (max-width: 768px) {

  .footer-newsletter-band__inner {

    flex-direction: column;

    align-items: stretch;

  }



  .footer-newsletter-form {

    max-width: none;

  }



  .footer-main {

    grid-template-columns: 1fr;

  }



  .footer-bottom__inner {

    flex-direction: column;

    text-align: center;

  }

}



/* Mobile nav */

@media (max-width: 1024px) {

  .cards-grid--4,

  .stats-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .hero-grid,

  .split-section,

  .contact-layout,

  .footer-nav {

    grid-template-columns: 1fr 1fr;

  }



}



@media (max-width: 768px) {

  /* Réaffirme la colonne unique sur mobile : prioritaire sur la règle tablette (max-width:1024px) déclarée plus haut */
  .contact-layout,
  .split-section {

    grid-template-columns: 1fr;

  }



  .nav-main {

    position: fixed;

    inset: var(--header-h) 0 auto 0;

    background: var(--jat-white);

    border-bottom: 1px solid var(--jat-cream-dark);

    padding: 1rem;

    transform: translateY(-120%);

    opacity: 0;

    visibility: hidden;

    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);

  }



  .nav-main.is-open {

    transform: translateY(0);

    opacity: 1;

    visibility: visible;

  }



  .nav-list {

    flex-direction: column;

    align-items: stretch;

  }



  .dropdown {

    position: static;

    opacity: 1;

    visibility: visible;

    transform: none;

    box-shadow: none;

    border: none;

    padding-left: 1rem;

    display: none;

  }



  .nav-item.is-expanded .dropdown {

    display: block;

  }



  .nav-toggle {

    display: flex;

  }



  .header-phone {

    display: none;

  }



  /* En-tête mobile : on resserre la grille (la colonne centrale du menu est vide)
     pour que logo + CTA + bouton menu tiennent sans déborder */
  .header-inner {

    gap: 0.6rem;

  }



  .logo img {

    height: 44px;

    max-width: min(220px, 58vw);

  }



  /* CTA d'en-tête compact sur mobile : une seule ligne, ne déborde plus à côté du menu */
  .header-actions {

    gap: 0.5rem;

  }



  .header-actions .btn-primary {

    padding: 0.45rem 0.85rem;

    font-size: 0.78rem;

    white-space: nowrap;

  }



  .nav-toggle {

    padding: 0.4rem;

  }



  .cards-grid--4,

  .cards-grid--2,

  .stats-grid {

    grid-template-columns: 1fr;

  }



  .hero-bg,

  .rse-bg,

  .bcorp-bg,

  .fontaines-hero-bg,

  .distributeurs-hero-bg {

    display: none;

  }



  .page-hero--fontaines {

    background-color: #1a1816;

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.88) 0%,

        rgba(10, 10, 10, 0.62) 42%,

        rgba(10, 10, 10, 0.4) 100%

      ),

      url("../assets/fontaines-hero.webp");

    background-size: cover;

    background-position: center 35%;

    background-repeat: no-repeat;

  }



  .page-hero--fontaines::before {

    display: none;

  }



  .page-hero--distributeurs {

    background-color: #1a1816;

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.88) 0%,

        rgba(10, 10, 10, 0.62) 42%,

        rgba(10, 10, 10, 0.35) 100%

      ),

      url("../assets/distributeurs-hero.webp");

    background-size: cover;

    background-position: center 40%;

    background-repeat: no-repeat;

  }



  .page-hero--distributeurs::before {

    display: none;

  }



  #rse.section--dark {

    background-color: var(--jat-black);

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.9) 0%,

        rgba(10, 10, 10, 0.75) 45%,

        rgba(10, 10, 10, 0.5) 100%

      ),

      url("../assets/rse-recolte.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

  }



  #rse.section--dark::before {

    display: none;

  }



  .hero {

    padding: 2.5rem 0 3rem;

    background-color: #1a1816;

    background-attachment: scroll;

  }



  .hero::before {

    display: none;

  }



  .hero-visual {

    display: none;

  }

}



@media (prefers-reduced-motion: reduce) {

  .hero-bg,

  .rse-bg,

  .bcorp-bg,

  .fontaines-hero-bg,

  .distributeurs-hero-bg {

    display: none;

  }



  .page-hero--fontaines {

    background-color: #1a1816;

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.88) 0%,

        rgba(10, 10, 10, 0.62) 42%,

        rgba(10, 10, 10, 0.4) 100%

      ),

      url("../assets/fontaines-hero.webp");

    background-size: cover;

    background-position: center 35%;

    background-repeat: no-repeat;

  }



  .page-hero--fontaines::before {

    display: none;

  }



  .page-hero--distributeurs {

    background-color: #1a1816;

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.88) 0%,

        rgba(10, 10, 10, 0.62) 42%,

        rgba(10, 10, 10, 0.35) 100%

      ),

      url("../assets/distributeurs-hero.webp");

    background-size: cover;

    background-position: center 40%;

    background-repeat: no-repeat;

  }



  .page-hero--distributeurs::before {

    display: none;

  }



  #rse.section--dark {

    background-color: var(--jat-black);

    background-image:

      linear-gradient(

        105deg,

        rgba(10, 10, 10, 0.9) 0%,

        rgba(10, 10, 10, 0.75) 45%,

        rgba(10, 10, 10, 0.5) 100%

      ),

      url("../assets/rse-recolte.webp");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

  }



  #rse.section--dark::before {

    display: none;

  }



  .hero {

    background-color: var(--jat-black);

    background-image:

      linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.35) 100%),

      url("../assets/hero-office.webp");

    background-size: cover;

    background-position: center 40%;

    background-repeat: no-repeat;

  }



  .hero::before {

    display: none;

  }

}



/* Hero text fade animation */

.hero-verb,

.hero-object,

.hero-target {

  display: inline-block;

  transition: opacity 0.35s ease, transform 0.35s ease;

}



.hero-verb.is-fading,

.hero-object.is-fading,

.hero-target.is-fading {

  opacity: 0;

  transform: translateY(8px);

}



/* Apparition au scroll */

html.js-reveal .reveal {

  opacity: 0;

  transition: opacity 0.4s ease;

  transition-delay: var(--reveal-delay, 0ms);

}



html.js-reveal .reveal.is-visible {

  opacity: 1;

}



@media (prefers-reduced-motion: no-preference) {

  @media (max-width: 768px) {

    html {

      scroll-behavior: smooth;

    }

  }

}



@media (prefers-reduced-motion: reduce) {

  html {

    scroll-behavior: auto;

  }



  html.js-reveal .reveal {

    opacity: 1;

    transform: none;

    transition: none;

  }

}

/* ====================================================== */
/* editorial.css fusionne dans main.css (surcharges)      */
/* ====================================================== */

/* Refonte éditoriale — identité plus moderne et moins template */

:root {
  --font-display: "Futura BT", Futura, "Century Gothic", sans-serif;
  --font-sans: "Futura BT", Futura, "Century Gothic", sans-serif;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 64px rgba(10, 10, 10, 0.06);
  --shadow-lift: 0 32px 80px rgba(10, 10, 10, 0.1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1240px, 90vw);
}

/* Grain subtil */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

body {
  padding-top: var(--header-h);
  background: var(--jat-bg);
}

h1,
h2,
h3,
.section-title,
.machines-title,
.services-title,
.hero-title,
.page-hero__title,
.catalog-hero__title,
.about-hero__title {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

/* Boutons pill + flèche */
.btn {
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.btn-primary::after {
  content: none;
}

.header-actions .btn-primary {
  justify-content: center;
}

.main--legal .page-hero__inner {
  text-align: center;
  align-items: center;
}

.main--legal .page-hero__lead {
  margin-inline: auto;
}

.legal {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: var(--jat-white);
}

.legal__inner {
  max-width: 820px;
}

.legal__block + .legal__block {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.legal__block h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0 0 0.6rem;
  color: var(--jat-text);
}

.legal__block p {
  margin: 0.25rem 0;
  color: var(--jat-text-muted);
}

.legal__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal__list li {
  padding: 0.22rem 0;
  color: var(--jat-text-muted);
}

.legal__block strong {
  color: var(--jat-text);
  font-weight: 600;
}

.legal__block a {
  color: var(--jat-terracotta);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(195, 96, 67, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  backdrop-filter: blur(6px);
}

/* Header flottant */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(224, 216, 212, 0.5);
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.05);
}

.main--home .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0) 100%);
  backdrop-filter: none;
  box-shadow: none;
}

.main--home .site-header:not(.is-scrolled) .nav-link,
.main--home .site-header:not(.is-scrolled) .header-phone {
  color: var(--jat-cream);
  text-shadow: 0 1px 10px rgba(10, 10, 10, 0.45);
}

.main--home .site-header:not(.is-scrolled) .nav-link:hover {
  color: var(--jat-terracotta-light);
}

.main--home .site-header:not(.is-scrolled) .btn-outline {
  color: var(--jat-cream);
  border-color: rgba(235, 230, 227, 0.55);
}

.main--home .site-header:not(.is-scrolled) .btn-outline:hover {
  background: var(--jat-cream);
  color: var(--jat-black);
  border-color: var(--jat-cream);
}

.nav-link {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.2rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-item:focus-within .nav-link::after {
  transform: scaleX(1);
}

/* Hero immersif */
.main--home .hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(4rem, 10vh, 6rem);
}

.hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(195, 96, 67, 0.22) 0%, transparent 55%),
    linear-gradient(118deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.62) 52%, rgba(10, 10, 10, 0.38) 100%);
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--jat-terracotta-light);
}

.hero-kicker sup {
  font-size: 0.65em;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.25rem, 4.6vw, 3.65rem);
  line-height: 1.04;
  font-weight: 600;
}

.hero-verb,
.hero-object {
  color: var(--jat-terracotta);
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  max-width: 28rem;
}

.hero-cta .btn-outline {
  border-color: rgba(235, 230, 227, 0.45);
  color: var(--jat-cream);
}

.hero-cta .btn-outline:hover {
  background: var(--jat-cream);
  color: var(--jat-black);
  border-color: var(--jat-cream);
}

.hero-phone-form {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  max-width: min(100%, 36rem);
  margin-top: 0;
}

.hero-phone-form__combo.is-hidden {
  display: none !important;
}

.hero-cta .hero-phone-form .problematique-form__combo {
  width: 100%;
  padding: 0.35rem;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  box-shadow: 0 14px 36px -24px rgba(10, 10, 10, 0.5);
}

.hero-cta .hero-phone-form .problematique-form__input-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 3.15rem;
  padding: 0.35rem 0.65rem 0.35rem 0.45rem;
  border-radius: calc(var(--radius-pill) - 2px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.12) 42%,
      rgba(255, 255, 255, 0.22) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(22px) saturate(1.65);
  backdrop-filter: blur(22px) saturate(1.65);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.55),
    inset 0 -1px 1px rgba(255, 255, 255, 0.1),
    0 10px 28px -14px rgba(10, 10, 10, 0.45);
}

.hero-cta .hero-phone-form .problematique-form__input-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 52%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, transparent 100%);
  pointer-events: none;
}

.hero-cta .hero-phone-form .problematique-form__input-wrap::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -8%;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 96, 67, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

@media (min-width: 721px) {
  .hero-cta .hero-phone-form .problematique-form__input-wrap {
    flex: 1 1 12rem;
  }
}

.hero-cta .hero-phone-form .problematique-form__combo:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px -22px rgba(10, 10, 10, 0.55);
}

.hero-cta .hero-phone-form .problematique-form__combo:focus-within .problematique-form__input-wrap {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 0 0 3px rgba(195, 96, 67, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.62),
    inset 0 -1px 1px rgba(255, 255, 255, 0.12),
    0 12px 32px -14px rgba(10, 10, 10, 0.5);
}

.hero-cta .hero-phone-form .problematique-form__icon {
  position: relative;
  z-index: 1;
  width: 2.1rem;
  height: 2.1rem;
  background: rgba(255, 255, 255, 0.22);
  color: var(--jat-terracotta);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-cta .hero-phone-form .problematique-form__input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  color: var(--jat-black);
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-cta .hero-phone-form .problematique-form__input::placeholder {
  color: rgba(10, 10, 10, 0.42);
  font-weight: 500;
}

.hero-cta .hero-phone-form .problematique-form__submit {
  flex: 0 0 auto;
  min-height: 3.15rem;
  padding-inline: clamp(0.85rem, 1.6vw, 1.25rem);
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  box-shadow:
    0 10px 28px -12px rgba(195, 96, 67, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-cta .hero-phone-form__success {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--jat-cream);
}

.hero-cta .hero-phone-form__success .problematique-form__success-text,
.hero-cta .hero-phone-form__success {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-cta .hero-phone-form__error {
  color: #ffb4a8;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-cta > .btn {
    width: 100%;
    justify-content: center;
    padding-block: 0.9rem;
  }

  .hero-cta .hero-phone-form {
    max-width: 100%;
  }

  .hero-cta .hero-phone-form .problematique-form__combo {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
  }

  .hero-cta .hero-phone-form .problematique-form__input-wrap {
    flex: 0 0 auto;
    width: 100%;
    min-height: 3rem;
    padding: 0.35rem 0.6rem 0.35rem 0.4rem;
    border-radius: var(--radius-lg);
  }

  .hero-cta .hero-phone-form .problematique-form__input {
    min-height: 2.75rem;
    font-size: 1rem;
  }

  .hero-cta .hero-phone-form .problematique-form__submit {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-cta .hero-phone-form .problematique-form__icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .hero-cta .hero-phone-form .problematique-form__icon svg {
    width: 15px;
    height: 15px;
  }

  .hero-cta .hero-phone-form .problematique-form__combo {
    padding: 0.45rem;
    gap: 0.4rem;
  }

  .hero-cta .hero-phone-form .problematique-form__submit {
    min-height: 2.75rem;
  }
}

/* Orbe stats hero */
.hero-orbit {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.hero-orbit__ring {
  display: none;
}

.hero-orbit__stats {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-stat-pill {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 9.5rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.7rem;
  box-sizing: border-box;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(235, 230, 227, 0.12);
  backdrop-filter: blur(12px);
  color: var(--jat-cream);
  animation: hero-pill-float 5s ease-in-out infinite;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

@media (hover: hover) {
  .hero-stat-pill:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.04);
    background: rgba(10, 10, 10, 0.72);
    border-color: rgba(235, 230, 227, 0.32);
    box-shadow: 0 16px 34px rgba(10, 10, 10, 0.3);
    z-index: 2;
  }

  .hero-stat-pill--accent:hover {
    background: rgba(195, 96, 67, 0.96);
  }
}

.hero-stat-pill--accent {
  background: rgba(195, 96, 67, 0.88);
  border-color: rgba(235, 230, 227, 0.2);
}

.hero-stat-pill:nth-child(1) {
  top: 4%;
  right: 2%;
  animation-delay: 0s;
}

.hero-stat-pill:nth-child(2) {
  bottom: 20%;
  left: -6%;
  animation-delay: -1.6s;
}

.hero-stat-pill:nth-child(3) {
  bottom: 2%;
  right: 4%;
  animation-delay: -3.2s;
}

.hero-stat-pill:nth-child(4) {
  top: 14%;
  left: -4%;
  animation-delay: -4.2s;
}

.hero-stat-pill:nth-child(5) {
  top: 42%;
  right: -8%;
  animation-delay: -2.1s;
}

.hero-stat-pill--cert {
  width: 9.5rem;
  min-height: 5.5rem;
}

.hero-stat-pill__logo {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-stat-pill--cert .hero-stat-pill__label,
.hero-stat-pill__label {
  font-size: 0.68rem;
  opacity: 0.85;
  text-transform: lowercase;
  max-width: 100%;
  line-height: 1.3;
}

.hero-stat-pill--cert .hero-stat-pill__label {
  text-transform: none;
  letter-spacing: 0.02em;
}

.hero-stat-pill__value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

@keyframes hero-pill-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Services bento */
.section-services {
  background: transparent;
  padding-block: clamp(4rem, 8vw, 6rem);
}

.main--home #services {
  background-color: #1a1816;
  background-image: url("../assets/services-office.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .main--home #services {
    background-attachment: scroll;
  }
}

.main--home .section-problem,
  .main--home .section-human,
  .main--home .section-solutions {
  background: var(--jat-white);
}

.services-shell {
  grid-template-columns: minmax(260px, 34%) 1fr;
  gap: 1rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.services-panel {
  border-radius: var(--radius-lg);
  min-height: 480px;
}

.services-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.services-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
  padding: 0;
  background: transparent;
  align-items: stretch;
  align-self: start;
}

.services-stack > li {
  display: flex;
  min-height: 0;
}

.services-stack > li + li {
  border-top: none;
}

.service-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  gap: 0.85rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--jat-cream-dark);
  background: var(--jat-white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.service-row__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-row__body h3 {
  margin: 0;
  transition: color 0.35s var(--ease-out);
}

.service-row__body p {
  margin: 0;
  flex: 1;
}

@media (hover: hover) {
  .service-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(10, 10, 10, 0.09);
    border-color: rgba(195, 96, 67, 0.35);
    padding: 1.35rem 1.5rem;
    background: linear-gradient(160deg, rgba(195, 96, 67, 0.04) 0%, var(--jat-white) 55%);
  }

  .service-row:hover .service-row__body h3 {
    color: var(--jat-terracotta);
  }

  .service-row:hover .service-row__icon {
    color: var(--jat-cream);
    background: var(--jat-terracotta);
    transform: scale(1.06);
  }

  .service-row:hover .service-row__arrow {
    opacity: 0.75;
    color: var(--jat-terracotta);
    transform: translateX(4px);
  }
}

.service-row__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(195, 96, 67, 0.1);
  color: var(--jat-terracotta);
  transition:
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.service-row__arrow {
  display: none;
}

/* Machines éditorial */
.section-machines {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.machines-header {
  border-bottom: none;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.machines-header__inner {
  margin-inline: auto;
  max-width: 40rem;
  text-align: center;
}

.machines-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.06;
}

.machines-lead {
  margin: 1rem auto 0;
  max-width: 34rem;
  text-align: center;
}

.machines-grid {
  gap: 1.25rem;
}

.machine-item {
  border-radius: 0;
  background: transparent;
  border: none;
  transition: transform 0.35s var(--ease-out);
}

.machine-item:hover {
  transform: translateY(-3px);
}

.machine-item__link {
  grid-template-columns: minmax(120px, 42%) 1fr;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  position: relative;
}

.machine-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.machine-item:nth-child(even) .machine-item__link {
  grid-template-columns: 1fr minmax(120px, 42%);
}

.machine-item:nth-child(even) .machine-item__media {
  order: 2;
}

.machine-item__stats {
  border-top: 1px solid var(--jat-cream-dark);
  padding-top: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.machine-item__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
}

/* B Corp — accueil */
.section.home-bcorp {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: transparent;
  color: var(--jat-cream);
}

/* Fond fixe (parallaxe, même principe que le hero) */
.bcorp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100vh;
  pointer-events: none;
  background-color: var(--jat-black);
  background-image:
    linear-gradient(90deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.32) 45%, rgba(10, 10, 10, 0.1) 100%),
    url("../assets/bcorp-cover.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.bcorp-bg.is-active {
  opacity: 1;
  visibility: visible;
}

.home-bcorp__inner {
  position: relative;
  z-index: 1;
}

.home-bcorp__content {
  max-width: 600px;
}

.home-bcorp__badge {
  position: absolute;
  right: clamp(0.5rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: clamp(110px, 13vw, 180px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(10, 10, 10, 0.45));
  pointer-events: none;
}

.home-bcorp__tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--jat-cream);
  background: var(--jat-terracotta);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(195, 96, 67, 0.5);
}

.home-bcorp__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--jat-cream);
}

.home-bcorp__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--jat-cream);
}

.home-bcorp__title::first-letter {
  text-transform: uppercase;
}

.home-bcorp__lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: rgba(235, 230, 227, 0.85);
}

.home-bcorp__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.home-bcorp__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(235, 230, 227, 0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    background 0.45s var(--ease-out);
}

@media (hover: hover) {
  .home-bcorp__card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(235, 230, 227, 0.32);
  }
}

.home-bcorp__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  color: var(--jat-cream);
  background: rgba(235, 230, 227, 0.15);
}

.home-bcorp__card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.home-bcorp__card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--jat-cream);
  text-transform: lowercase;
}

.brand-case {
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--jat-cream);
}

.home-bcorp__content .btn-primary {
  margin-top: 0;
}

@media (max-width: 900px) {
  .home-bcorp__cards {
    grid-template-columns: 1fr;
  }

  .home-bcorp__content .btn-primary {
    width: 100%;
    max-width: 22rem;
  }

  .home-bcorp__badge {
    position: static;
    transform: none;
    display: block;
    width: 120px;
    margin: 1.75rem auto 0;
    filter: drop-shadow(0 6px 18px rgba(10, 10, 10, 0.4));
  }
}

@media (max-width: 768px) {
  .section.home-bcorp {
    background-color: var(--jat-black);
    background-image:
      linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.86) 55%,
        rgba(10, 10, 10, 0.8) 100%
      ),
      url("../assets/bcorp-cover.webp");
    background-size: cover;
    background-position: 35% center;
    background-repeat: no-repeat;
  }

  .home-bcorp__card {
    background: rgba(10, 10, 10, 0.55);
    border-color: rgba(235, 230, 227, 0.24);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* Simulateur CTA */
.home-simulateur {
  background: var(--jat-bg);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.simulateur-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.75rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1f1411 0%, var(--jat-black) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--jat-cream);
  box-shadow: 0 30px 60px -28px rgba(10, 10, 10, 0.6);
}

.simulateur-panel::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/simulateur-panel-bg.webp") center 30% / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .simulateur-panel::before {
    filter: none;
    transform: none;
  }
}

.simulateur-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(31, 20, 17, 0.84) 0%, rgba(10, 10, 10, 0.8) 52%, rgba(10, 10, 10, 0.9) 100%);
}

.simulateur-panel__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 75% at 92% 6%, rgba(195, 96, 67, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 70% 90% at 4% 104%, rgba(195, 96, 67, 0.12) 0%, transparent 60%);
}

.simulateur-panel__content {
  position: relative;
  z-index: 2;
}

.simulateur-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--jat-cream);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
}

.simulateur-panel__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--jat-cream);
}

.simulateur-panel__lead {
  margin: 0 0 1.85rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.simulateur-panel__btn {
  background: var(--jat-terracotta);
  color: var(--jat-white);
  border: none;
}

.simulateur-panel__btn::after {
  display: none;
}

.simulateur-panel__btn:hover {
  background: #cf7048;
  color: var(--jat-white);
  transform: translateY(-2px);
}

.simulateur-steps {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.simulateur-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.simulateur-step__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jat-terracotta);
  background: var(--jat-cream);
  border-radius: 50%;
}

.simulateur-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.simulateur-step__body strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--jat-cream);
}

@media (max-width: 860px) {
  .simulateur-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .simulateur-panel__btn:not(.problematique-form__submit) {
    width: 100%;
    max-width: 24rem;
  }
}

/* Stats band */
.stats-band {
  background: var(--jat-terracotta);
  color: var(--jat-cream);
  border-block: none;
  padding: clamp(1.1rem, 2.8vw, 2rem) 0;
}

.stats-grid {
  gap: clamp(1.5rem, 4vw, 3rem);
}

.stat {
  position: relative;
  padding-inline: 1rem;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(235, 230, 227, 0.25);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--jat-cream);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  color: rgba(235, 230, 227, 0.9);
}

.about-stats .stat-value {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

/* Témoignages */
#avis .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 18ch;
  margin-inline: auto;
}

.testimonials {
  position: relative;
  padding-top: 2rem;
}

.testimonials::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--jat-terracotta);
  opacity: 0.2;
  pointer-events: none;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.5;
}

/* Sections générales */
.section {
  padding-block: clamp(4rem, 8vw, 5.5rem);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.08;
}

.eyebrow,
.machines-eyebrow,
.services-eyebrow {
  font-family: var(--font-sans);
  letter-spacing: 0.16em;
}

/* Pages intérieures */
.page-hero,
.catalog-hero,
.about-hero {
  position: relative;
}

.page-hero__title,
.catalog-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

/* Contact — proposition éditoriale */
.section-contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(195, 96, 67, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #f7f2ee 100%);
}

.section-contact::before,
.section-contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-contact::before {
  top: -8rem;
  right: -7rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(195, 96, 67, 0.1), transparent 68%);
}

.section-contact::after {
  left: -8rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.05), transparent 70%);
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.contact-header {
  max-width: 42rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-layout {
  gap: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10, 10, 10, 0.04),
    0 26px 70px -34px rgba(10, 10, 10, 0.25);
  backdrop-filter: blur(10px);
}

.contact-info {
  position: relative;
  gap: 1.75rem;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--jat-cream);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(160deg, #221714 0%, #0f0a09 100%);
  border-left: none;
  border-radius: 0;
}

.contact-info::after {
  content: "";
  position: absolute;
  inset: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}

.contact-info__lead {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(235, 230, 227, 0.86);
  max-width: 28rem;
}

.contact-offices {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-office {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  color: var(--jat-cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: none;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

@media (hover: hover) {
  .contact-office:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: none;
  }
}

.contact-office__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  color: var(--jat-white);
  background: rgba(195, 96, 67, 0.22);
}

.contact-office__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-office__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-office__city {
  color: rgba(235, 230, 227, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-office__value {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--jat-white);
  letter-spacing: -0.01em;
}

.contact-info__note {
  position: relative;
  z-index: 1;
  margin: -0.25rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(235, 230, 227, 0.55);
}

.contact-email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--jat-cream);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  align-self: flex-start;
  transition:
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.contact-email:hover {
  color: var(--jat-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-email__icon {
  display: flex;
  color: var(--jat-terracotta);
}

.contact-form {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.contact-form__title {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}

.contact-field input,
.contact-field textarea {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(10, 10, 10, 0.02);
}

.contact-form .btn-block {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .contact-layout {
    border-radius: 22px;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
}

.contact-email__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-email:hover {
  color: var(--jat-terracotta);
  background: var(--jat-white);
  border-color: rgba(195, 96, 67, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .contact-info {
    padding-left: 1.25rem;
  }

  .contact-offices {
    grid-template-columns: 1fr;
  }
}

/* Reveal au scroll */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.js-reveal .reveal.reveal--right {
  transform: translateX(24px);
}

html.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Sur mobile, l'apparition latérale (translateX) provoquait un léger débordement
   horizontal avant l'animation : on bascule sur une apparition verticale (état final identique). */
@media (max-width: 768px) {
  html.js-reveal .reveal.reveal--right {
    transform: translateY(22px);
  }
}

@media (max-width: 1024px) {
  .services-shell {
    grid-template-columns: 1fr;
  }

  .services-stack {
    grid-template-columns: 1fr;
  }

  .machine-item:nth-child(even) .machine-item__link {
    grid-template-columns: minmax(110px, 38%) 1fr;
  }

  .machine-item:nth-child(even) .machine-item__media {
    order: 0;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .main--home .hero::before {
    display: block;
    background:
      linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.72) 45%,
        rgba(10, 10, 10, 0.88) 100%
      );
  }

  .main--home .hero-title {
    text-shadow: 0 2px 20px rgba(10, 10, 10, 0.5);
  }

  .main--home .hero-verb,
  .main--home .hero-object {
    color: #e07a5a;
  }

  .main--home .hero-line--muted .hero-target {
    color: var(--jat-white);
    opacity: 1;
  }

  .main--home .hero-lead {
    color: rgba(255, 255, 255, 0.94);
    opacity: 1;
    text-shadow: 0 1px 14px rgba(10, 10, 10, 0.4);
  }

  .main--home .hero-kicker {
    color: #f0b8a4;
  }

  .hero-orbit {
    width: min(100%, 320px);
    margin-top: 1rem;
  }

  .hero-stat-pill,
  .hero-stat-pill--cert {
    width: 8.25rem;
    min-height: 5rem;
  }

  .hero-stat-pill:nth-child(2) {
    left: -2%;
  }

  .hero-stat-pill:nth-child(4) {
    left: 0;
    top: 10%;
  }

  .hero-stat-pill:nth-child(5) {
    right: -2%;
    top: 38%;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .main--home .site-header:not(.is-scrolled) .nav-main.is-open {
    background: var(--jat-white);
  }

  .main--home .site-header:not(.is-scrolled) .nav-main.is-open .nav-link {
    color: var(--jat-text);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stat-pill {
    animation: none;
  }

  html.js-reveal .reveal {
    transform: none;
  }
}

/* ---------- Hero stats — variante bento (expérimental) ---------- */
.hero-orbit {
  width: min(100%, 460px);
  aspect-ratio: auto;
}

.hero-orbit__stats {
  position: static;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.hero-orbit__stats .hero-stat-pill {
  position: static;
  inset: auto;
  width: auto;
  min-height: 0;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 0.35rem;
  padding: 1.05rem 1.15rem;
  animation: none;
}

.hero-orbit__stats .hero-stat-pill:nth-child(3) {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
}

.hero-orbit__stats .hero-stat-pill--cert {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
}

.hero-orbit__stats .hero-stat-pill__value {
  justify-content: flex-start;
  min-height: 0;
  font-size: 1.75rem;
}

.hero-orbit__stats .hero-stat-pill__label {
  text-align: left;
}

@media (hover: hover) {
  .hero-orbit__stats .hero-stat-pill:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .hero-orbit__stats {
    grid-template-columns: 1fr;
  }
  .hero-orbit__stats .hero-stat-pill:nth-child(3) {
    grid-column: auto;
  }
}

/* ---------- Bouton retour en haut ---------- */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: var(--jat-cream);
  background: var(--jat-terracotta);
  box-shadow: 0 10px 26px rgba(195, 96, 67, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out),
    background 0.25s var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--jat-terracotta-hover, var(--jat-black));
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--jat-black);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.2s linear, visibility 0.2s linear;
    transform: none;
  }

  .back-to-top.is-visible,
  .back-to-top:hover {
    transform: none;
  }
}

/* ---------- Footer (forme Pleyce) ---------- */
.site-footer {
  background: var(--jat-bg);
  color: var(--jat-text);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.ft-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ft-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.ft-social {
  display: flex;
  gap: 0.85rem;
}

.ft-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--jat-cream);
  background: var(--jat-black);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.ft-social a svg {
  width: 1.45rem;
  height: 1.45rem;
}

.ft-social a:hover {
  background: var(--jat-terracotta);
  transform: translateY(-2px);
}

.ft-news {
  flex: 1 1 360px;
  max-width: 460px;
}

.ft-news__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--jat-black);
}

.ft-form {
  display: flex;
  gap: 0.6rem;
}

.ft-form input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--jat-text);
  background: var(--jat-white);
  border: 1px solid var(--jat-cream-dark);
  border-radius: var(--radius-pill);
}

.ft-form input:focus-visible {
  outline: 2px solid var(--jat-terracotta);
  outline-offset: 1px;
}

.ft-form .btn {
  flex-shrink: 0;
}

.ft-divider {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  border: none;
  border-top: 1px solid var(--jat-cream-dark);
}

.ft-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.ft-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.ft-group__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--jat-black);
}

.ft-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.ft-group li {
  position: relative;
  padding-left: 0.9rem;
}

.ft-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--jat-terracotta);
}

.ft-group a {
  font-size: 0.9rem;
  color: var(--jat-text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.ft-group a:hover {
  color: var(--jat-terracotta);
}

.ft-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.ft-trust__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ft-trust__badges img {
  height: auto;
}

.ft-score {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ft-score__stars {
  font-size: 1.1rem;
  letter-spacing: 0.12rem;
  color: var(--jat-terracotta);
}

.ft-score__value {
  font-size: 0.82rem;
  color: var(--jat-text-muted);
}

.ft-score__value strong {
  color: var(--jat-black);
}

.site-footer .footer-bottom {
  background: transparent;
}

.ft-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.ft-legal a {
  font-size: 0.82rem;
  color: var(--jat-text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.ft-legal a:hover {
  color: var(--jat-terracotta);
}

@media (max-width: 768px) {
  .ft-body {
    grid-template-columns: 1fr;
  }

  .ft-links {
    grid-template-columns: 1fr 1fr;
  }

  .ft-trust {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .ft-form {
    flex-direction: column;
  }

  .ft-form .btn {
    width: 100%;
  }

  .ft-links {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   Pop-up simulateur café (discret)
---------------------------------------------------------------- */
.cafe-popup__toggle {
  position: fixed;
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--jat-cream-dark);
  border-radius: 50%;
  background: var(--jat-white);
  color: var(--jat-terracotta);
  box-shadow: 0 12px 28px -14px rgba(10, 10, 10, 0.45);
  cursor: pointer;
  pointer-events: auto;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.cafe-popup__toggle:hover {
  background: var(--jat-terracotta);
  color: var(--jat-cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(195, 96, 67, 0.55);
}

.cafe-popup__toggle[hidden] {
  display: none;
}

.cafe-popup {
  position: fixed;
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 71;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(340px, calc(100vw - 2rem));
  padding: 0.9rem 1rem 0.9rem 0.9rem;
  background: var(--jat-white);
  border: 1px solid var(--jat-cream-dark);
  border-radius: 18px;
  box-shadow: 0 18px 40px -18px rgba(10, 10, 10, 0.35);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    visibility 0s linear 0.4s;
}

.cafe-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    visibility 0s;
}

.cafe-popup__close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--jat-text-muted);
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

.cafe-popup__close:hover {
  background: var(--jat-cream);
  color: var(--jat-text);
}

.cafe-popup__media {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cafe-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cafe-popup__body {
  flex: 1 1 auto;
  min-width: 0;
}

.cafe-popup__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--jat-text);
  padding-right: 1rem;
}

.cafe-popup__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--jat-terracotta);
  text-decoration: none;
  border: 1px solid var(--jat-terracotta);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  transition:
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.cafe-popup__btn svg {
  transition: transform 0.2s var(--ease-out);
}

.cafe-popup__btn:hover {
  background: var(--jat-terracotta);
  color: var(--jat-cream);
}

.cafe-popup__btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .cafe-popup,
  .cafe-popup__toggle {
    display: none !important;
    pointer-events: none !important;
  }
}

@media (max-width: 480px) {
  .cafe-popup {
    gap: 0.7rem;
    padding: 0.8rem 0.85rem;
  }

  .cafe-popup__media {
    width: 56px;
    height: 56px;
  }

  .cafe-popup__title {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cafe-popup {
    transition: opacity 0.3s ease;
    transform: none;
  }
}

/* ----------------------------------------------------------------
   Cards étapes catalogue (fontaines) — plus de relief
---------------------------------------------------------------- */
.catalog-step {
  position: relative;
  background: var(--jat-white);
  border: 1px solid var(--jat-cream-dark);
  box-shadow: 0 12px 30px -18px rgba(10, 10, 10, 0.28);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.catalog-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: calc(var(--radius) + 2px) calc(var(--radius) + 2px) 0 0;
  background: linear-gradient(90deg, var(--jat-terracotta), var(--jat-terracotta-light));
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.catalog-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -20px rgba(10, 10, 10, 0.38);
  border-color: rgba(195, 96, 67, 0.45);
}

.catalog-step:hover::before {
  opacity: 1;
}

.catalog-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(195, 96, 67, 0.12);
  color: var(--jat-terracotta);
  font-size: 0.82rem;
}

/* ----------------------------------------------------------------
   Bande CTA catalogue — design moderne
---------------------------------------------------------------- */
.catalog-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: left;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  margin-top: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(235, 230, 227, 0.14);
  box-shadow: 0 30px 70px -34px rgba(10, 10, 10, 0.65);
  overflow: hidden;
}

.catalog-cta-band--fontaines {
  background-image:
    radial-gradient(135% 130% at 100% 0%, rgba(195, 96, 67, 0.4) 0%, transparent 55%),
    linear-gradient(105deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.5) 100%),
    url("../assets/fontaines-cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.catalog-cta-band--distributeurs {
  background-image:
    radial-gradient(135% 130% at 100% 0%, rgba(195, 96, 67, 0.4) 0%, transparent 55%),
    linear-gradient(105deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.5) 100%),
    url("../assets/distributeurs-cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.catalog-cta-band__content {
  max-width: 36rem;
}

.catalog-cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jat-terracotta-light);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(235, 230, 227, 0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.catalog-cta-band h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
}

.catalog-cta-band p {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.86;
}

.catalog-cta-band__actions {
  flex-shrink: 0;
  justify-content: flex-start;
}

/* Variante claire (page à propos) */
.catalog-cta-band.about-cta {
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(195, 96, 67, 0.16) 0%, transparent 55%),
    linear-gradient(135deg, #f7f1ed 0%, #ece3dd 100%);
  color: var(--jat-text);
  border-color: var(--jat-cream-dark);
  box-shadow: 0 24px 50px -30px rgba(10, 10, 10, 0.22);
}

.about-cta .catalog-cta-band__eyebrow {
  color: var(--jat-terracotta);
  background: rgba(195, 96, 67, 0.1);
  border-color: rgba(195, 96, 67, 0.28);
}

.about-cta h2 {
  color: var(--jat-text);
}

.about-cta p {
  color: var(--jat-text-muted);
  opacity: 1;
}

.about-cta .btn-outline {
  color: var(--jat-terracotta);
  border-color: var(--jat-terracotta);
}

.about-cta .btn-outline:hover {
  color: var(--jat-cream);
  background: var(--jat-terracotta);
  border-color: var(--jat-terracotta);
}

@media (max-width: 640px) {
  .catalog-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-cta-band__actions {
    width: 100%;
  }

  .catalog-cta-band__actions .btn {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   Section contact simplifiée
---------------------------------------------------------------- */
.section-contact-lite .contact-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-lite__lead {
  max-width: 38rem;
  margin: 0.85rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--jat-text-muted);
}

.contact-lite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

.contact-lite__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  width: 100%;
  max-width: 58rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--jat-cream);
  background: linear-gradient(160deg, #1f1411 0%, var(--jat-terracotta) 100%);
  border-radius: calc(var(--radius) + 4px);
}

.contact-lite__offices .contact-office,
.contact-lite__offices .contact-email {
  margin: 0;
}

.contact-lite__offices .contact-email {
  align-self: center;
  justify-self: start;
}

@media (max-width: 640px) {
  .contact-lite__offices {
    grid-template-columns: 1fr;
  }
}

/* ====================================================== */
/* Page de detail machine                                 */
/* ====================================================== */
.main--machine {
  background: var(--jat-bg);
  padding-top: calc(var(--header-h) + var(--subnav-h));
}

.machine-detail {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: var(--jat-white);
}

.machine-detail__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.machine-detail .breadcrumb {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.machine-detail__intro {
  max-width: 38rem;
}

.machine-detail__name {
  order: 2;
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--jat-black);
}

.machine-detail__subtitle {
  order: 1;
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jat-terracotta);
}

.machine-detail__lead {
  order: 3;
  margin: 0 0 1.6rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--jat-text);
}

.machine-detail__divider {
  display: none;
}

.machine-detail__text {
  order: 4;
  margin: 0 0 2.25rem;
  max-width: 34rem;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--jat-text-muted);
}

.machine-detail .breadcrumb {
  order: 0;
}

.machine-detail__intro .btn {
  order: 5;
  align-self: flex-start;
}

.machine-detail__intro {
  display: flex;
  flex-direction: column;
}

.machine-detail__stats {
  display: grid;
  gap: 0;
}

.machine-detail__stat {
  padding: 1.1rem 0;
  border-top: 1px solid var(--jat-cream-dark);
}

.machine-detail__stat:last-child {
  border-bottom: 1px solid var(--jat-cream-dark);
}

.machine-detail__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--jat-black);
}

.machine-detail__stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jat-text-muted);
}

/* ====================================================== */
/* Sous-navigation fiche produit                          */
/* ====================================================== */
.main--machine .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.machine-subnav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--subnav-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(224, 216, 212, 0.6);
}

.machine-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
}

.machine-subnav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--jat-cream);
  border-radius: 999px;
}

.machine-subnav__links::-webkit-scrollbar {
  display: none;
}

.machine-subnav__link {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--jat-text-muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.machine-subnav__link:hover {
  color: var(--jat-black);
}

.machine-subnav__link.is-active {
  color: var(--jat-white);
  background: var(--jat-terracotta);
  box-shadow: 0 6px 16px rgba(195, 96, 67, 0.32);
}

.machine-detail,
.machine-specs,
.machine-pricing,
.machine-similar {
  scroll-margin-top: calc(var(--header-h) + var(--subnav-h) + 8px);
}

@media (max-width: 640px) {
  .machine-subnav__cta {
    display: none;
  }
  .machine-subnav__inner {
    justify-content: flex-start;
  }
  /* Sous-menu resserré sur mobile : tient sur une ligne dès ~360px ; défile si écran plus étroit */
  .machine-subnav__links {
    width: 100%;
    gap: 0.05rem;
    padding: 0.16rem;
    -webkit-overflow-scrolling: touch;
  }
  .machine-subnav__link {
    padding: 0.28rem 0.4rem;
    font-size: 0.66rem;
    letter-spacing: 0;
  }
}

.machine-stage {
  position: relative;
  overflow: hidden;
  background: var(--jat-bg);
  --stage-band: clamp(190px, 26vw, 310px);
  --stage-overhang: clamp(32px, 5vw, 70px);
  height: calc(var(--stage-band) + var(--stage-overhang));
}

.machine-stage__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: var(--container);
  height: var(--stage-band);
  z-index: 0;
  background-image: url("../assets/machine-stage-bg.webp");
  background-size: cover;
  background-position: center 42%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.machine-stage__img {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 2vw, 22px);
  transform: translateX(-50%);
  width: auto;
  height: calc(var(--stage-band) + var(--stage-overhang) - clamp(66px, 10vw, 104px));
  max-width: 86%;
  z-index: 1;
}

.machine-stage__name {
  display: none;
  position: absolute;
  top: clamp(0.6rem, 2.2vw, 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  padding: 0 1rem;
  width: max-content;
  max-width: 90%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--jat-white);
  text-shadow: 0 1px 2px rgba(10, 10, 10, 0.35), 0 6px 22px rgba(10, 10, 10, 0.45);
}

.machine-outro {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.machine-outro__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--jat-black);
}

.machine-outro__lead {
  margin: 0 auto 1.85rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--jat-text-muted);
}

.machine-outro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

@media (max-width: 860px) {
  .machine-detail__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .machine-detail__stats {
    grid-template-columns: 1fr 1fr;
  }
  .machine-stage__bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .machine-detail__stats {
    grid-template-columns: 1fr;
  }
}

/* ====================================================== */
/* Fiche technique machine                                */
/* ====================================================== */
.machine-specs {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--jat-white);
  border-top: 1px solid var(--jat-cream-dark);
}

.machine-specs__head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.machine-specs__eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jat-terracotta);
}

.machine-specs__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--jat-black);
}

.machine-specs__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.machine-specs__media {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  justify-content: center;
}

.machine-specs__media img {
  width: min(100%, 300px);
  height: auto;
}

.machine-specs__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.spec-group {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.spec-group:last-child {
  margin-bottom: 0;
}

.spec-group h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jat-black);
}

.spec-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.spec-group li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--jat-text-muted);
}

.spec-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--jat-terracotta);
}

.spec-group p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--jat-text-muted);
}

.machine-specs__form,
.machine-specs__download {
  grid-column: 1 / -1;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--jat-cream-dark);
}

.machine-specs__form-title,
.machine-specs__download-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jat-black);
}

.machine-specs__fields {
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
  margin-bottom: 1.1rem;
}

.machine-specs__fields .machine-specs__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.machine-specs__form input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--jat-text);
  background: var(--jat-bg);
  border: 1px solid var(--jat-cream-dark);
  border-radius: 10px;
}

.machine-specs__form input:focus-visible {
  outline: none;
  border-color: var(--jat-terracotta);
}

@media (max-width: 860px) {
  .machine-specs__grid {
    grid-template-columns: 1fr;
  }
  .machine-specs__media {
    position: static;
  }
  .machine-specs__media img {
    width: min(60%, 240px);
  }
}

@media (max-width: 560px) {
  .machine-specs__cols {
    grid-template-columns: 1fr;
  }
  .machine-specs__fields .machine-specs__row2 {
    grid-template-columns: 1fr;
  }
}

/* ====================================================== */
/* Tarifs machine                                         */
/* ====================================================== */
.machine-pricing {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--jat-bg);
  border-top: 1px solid var(--jat-cream-dark);
}

.machine-pricing__title {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--jat-black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
  justify-content: center;
  max-width: 52rem;
  margin-inline: auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--jat-white);
  border: 1px solid var(--jat-cream-dark);
  border-radius: var(--radius-lg);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--jat-terracotta);
  box-shadow: 0 22px 44px rgba(10, 10, 10, 0.12);
}

.pricing-card--featured:hover {
  box-shadow: 0 28px 56px rgba(10, 10, 10, 0.16);
}

.pricing-card--featured {
  background: var(--jat-cream);
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(10, 10, 10, 0.12);
}

.pricing-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--jat-black);
}

.pricing-card__from {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--jat-text-muted);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--jat-black);
}

.pricing-card__cur {
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card__per {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--jat-text-muted);
}

.pricing-card__lead {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--jat-black);
}

.pricing-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
}

.pricing-card__list li {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--jat-text-muted);
}

.pricing-card__btn {
  align-self: center;
  margin-top: 0.35rem;
}

.pricing-card__link {
  font-size: 0.84rem;
  color: var(--jat-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-card__link:hover {
  color: var(--jat-terracotta);
}

.machine-pricing__cta {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin-inline: auto;
  }
  .pricing-card--featured {
    box-shadow: none;
  }
}

/* ====================================================== */
/* Machines similaires                                    */
/* ====================================================== */
.machine-similar {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--jat-bg);
  border-top: 1px solid var(--jat-cream-dark);
}

.machine-similar__title {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--jat-black);
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.similar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.similar-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 210px;
  margin-bottom: 1.25rem;
}

.similar-card__media img {
  max-height: 210px;
  width: auto;
  max-width: 100%;
}

.similar-card__img {
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.similar-card__img--hover {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(0.98);
  opacity: 0;
}

.similar-card:hover .similar-card__img--default {
  opacity: 0;
  transform: scale(0.98);
}

.similar-card:hover .similar-card__img--hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.02);
}

.similar-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--jat-black);
}

.similar-card__tagline {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--jat-text-muted);
}

.similar-card__stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.similar-card__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--jat-black);
}

.similar-card__stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--jat-text-muted);
}

.similar-card__btn {
  margin-top: auto;
}

.similar-card__btn::after {
  display: none;
}

@media (max-width: 760px) {
  .similar-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
    gap: 2.5rem;
  }
}




/* ----------------------------------------------------------------
   Bannière d'annonce (événements, actus)
   ---------------------------------------------------------------- */
.site-banner { background: var(--jat-terracotta); color: #fff; font-size: 0.9rem; }
.site-banner__inner { display: flex; align-items: center; gap: 1rem; padding: 0.6rem 0; }
.site-banner__img { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.site-banner__text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.site-banner__title { font-weight: 700; line-height: 1.2; }
.site-banner__desc { opacity: 0.92; line-height: 1.3; }
.site-banner__cta { margin-left: auto; flex: 0 0 auto; display: inline-block; padding: 0.5rem 1.1rem; background: #fff; color: var(--jat-terracotta); border-radius: 999px; font-weight: 700; font-size: 0.85rem; white-space: nowrap; transition: transform 0.2s ease, color 0.2s ease; }
.site-banner__cta:hover { color: var(--jat-terracotta-hover); transform: translateY(-1px); }
.site-banner__close { flex: 0 0 auto; background: transparent; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem; opacity: 0.85; }
.site-banner__close:hover { opacity: 1; }
@media (max-width: 600px) { .site-banner__desc { display: none; } .site-banner__img { width: 40px; height: 40px; } .site-banner__cta { padding: 0.4rem 0.8rem; } }


/* Bannière : positionnement fixe au-dessus de l'en-tête + décalage du contenu */
.site-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
body.has-site-banner { padding-top: var(--site-banner-h, 0px); }
body.has-site-banner .site-header { top: var(--site-banner-h, 0px); }
html.has-site-banner { scroll-padding-top: calc(var(--header-h) + var(--site-banner-h, 0px)); }


/* Cartes "étapes" : plus de relief au repos */
.catalog-step {
  padding: 1.5rem 1.5rem 1.65rem;
  box-shadow: 0 18px 42px -22px rgba(10, 10, 10, 0.42);
  border-color: rgba(10, 10, 10, 0.06);
}
.catalog-step::before { opacity: 1; height: 4px; }
.catalog-step__num {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--jat-terracotta);
  color: #fff;
  font-weight: 700;
}
.catalog-step__title { font-size: 1.08rem; font-weight: 700; color: var(--jat-black); }


/* Cartes "engagements" (piliers) : plus de relief au repos */
.about-pillar {
  position: relative;
  overflow: hidden;
  border-color: rgba(10, 10, 10, 0.06);
  box-shadow: 0 16px 38px -20px rgba(10, 10, 10, 0.36);
}
.about-pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jat-terracotta), var(--jat-terracotta-light));
}
.about-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(195, 96, 67, 0.4);
  box-shadow: 0 26px 50px -22px rgba(10, 10, 10, 0.44);
}
.about-pillar__title { font-weight: 700; color: var(--jat-black); }


/* Section contact : fond verre dépoli pour lisibilité sur l'image fixe */
.section-contact-lite {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

/* Mobile — textes et CTA des sections centrés */
@media (max-width: 768px) {
  .hero-content,
  .home-problem__head,
  .services-panel,
  .split-section > div:not(.human-media):not(.human-gallery),
  .home-bcorp__content,
  .simulateur-panel__content,
  .contact-header,
  .about-section-header,
  .page-hero__inner,
  .catalog-hero__inner,
  .about-mission .split-section > div:first-child {
    text-align: center;
  }

  .hero-content,
  .split-section > div:not(.human-media):not(.human-gallery),
  .simulateur-panel__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-lead,
  .section-lead,
  .services-lead,
  .page-hero__lead,
  .catalog-hero__lead,
  .home-bcorp__lead {
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
    width: 100%;
  }

  .hero-cta .btn,
  .hero-phone-form,
  .hero-cta .hero-phone-form,
  .services-panel .btn,
  .split-section > div:not(.human-media):not(.human-gallery) .btn,
  .home-bcorp__content > .btn,
  .problematique-wizard,
  .problematique-form,
  .problematique-form__success {
    align-self: stretch;
    margin-inline: auto;
    width: 100%;
    max-width: min(100%, 28rem);
  }

  .hero-cta .hero-phone-form {
    max-width: min(100%, 36rem);
  }

  .simulateur-panel__content .btn,
  .page-hero__actions .btn,
  .catalog-hero__actions .btn,
  .about-mission .split-section > div:first-child .btn {
    margin-inline: auto;
  }

  .page-hero__actions,
  .catalog-hero__actions {
    justify-content: center;
  }

  .services-highlights,
  .services-highlights li,
  #humain .services-highlights,
  #humain .services-highlights li {
    text-align: center;
    padding-left: 0;
    border-left: none;
  }

  .services-highlights li,
  #humain .services-highlights li {
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  }

  .services-panel .services-highlights li {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .services-highlights li:last-child,
  #humain .services-highlights li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .eco-list,
  .eco-list li {
    text-align: center;
  }

  .home-bcorp__cards {
    width: 100%;
  }

  .home-bcorp__card {
    text-align: center;
  }

  .section-contact .contact-info,
  .section-contact .contact-form,
  .section-contact-lite .contact-layout,
  .section-contact-lite .contact-form {
    text-align: left;
    align-items: stretch;
  }

  .problem-grid .catalog-benefit,
  .service-row,
  .solution-card,
  .machine-item,
  .about-pillar {
    text-align: left;
  }
}

/* ----------------------------------------------------------------
   Page à propos — hospitality & engagements
---------------------------------------------------------------- */
.about-pillars--3 {
  grid-template-columns: repeat(3, 1fr);
}

.about-story {
  background: var(--jat-bg);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 36rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.about-story__media {
  margin: 0;
  max-width: 36rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-story__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.about-story__content p + p {
  margin-top: 1rem;
}

.about-quote {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-left: 3px solid var(--jat-terracotta);
  background: var(--jat-cream);
  border-radius: 0 10px 10px 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--jat-black);
  font-weight: 600;
}

.about-how {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--jat-cream);
  text-align: center;
}

.about-how__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.about-how__inner p {
  margin: 0.75rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.65;
  color: var(--jat-text);
}

.about-rubriques {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.about-rubriques li {
  padding: 0.5rem 1rem;
  background: var(--jat-white);
  border: 1px solid var(--jat-cream-dark);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--jat-black);
}

.about-team {
  background: var(--jat-cream);
}

.about-team__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  max-width: 52rem;
  margin-inline: auto;
}

.about-team__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.about-team__gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px -18px rgba(10, 10, 10, 0.35);
}

.about-team__gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  max-height: 16rem;
}

.about-team__gallery img:not(:first-child) {
  aspect-ratio: 4 / 3;
  max-height: 9.5rem;
}

.about-team__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-team__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-team__caption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--jat-text-muted);
  font-weight: 600;
}

.about-responsible {
  position: relative;
  z-index: 1;
  background: var(--jat-bg);
}

.about-responsible .container {
  position: relative;
  z-index: 1;
}

.about-responsible__intro {
  max-width: 44rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.about-responsible__intro .section-lead {
  color: var(--jat-text-muted);
}

.about-responsible__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.about-responsible__card {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: var(--jat-white);
  border: 1px solid var(--jat-cream-dark);
  border-radius: 12px;
}

.about-responsible__card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--jat-black);
  text-transform: lowercase;
}

.about-responsible__card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--jat-text);
}

.about-responsible__card p:last-child {
  margin-bottom: 0;
}

.about-responsible__list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--jat-text);
}

.about-responsible__card--wide {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  grid-column: 1 / -1;
}

.about-pillar a {
  color: var(--jat-terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-pillar a:hover {
  color: var(--jat-black);
}

.about-disclaimer {
  margin-top: clamp(2rem, 4vw, 2.5rem);
  padding: 1rem 1.25rem;
  background: var(--jat-cream);
  border-radius: 10px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--jat-text-muted);
  font-style: italic;
}

@media (max-width: 960px) {
  .about-pillars--3 {
    grid-template-columns: 1fr;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    max-width: min(100%, 28rem);
    margin-inline: auto;
  }

  .about-story__media img {
    max-height: none;
  }

  .about-responsible__grid {
    grid-template-columns: 1fr;
  }

  .about-team__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-team__gallery {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------ *
 * En-tête : le menu ne passe jamais sur deux lignes.
 * Les 5 liens tiennent en compact jusqu'à 1101 px ; en dessous, le menu
 * burger (celui du mobile) prend le relais.
 * ------------------------------------------------------------------ */
.nav-list {
  flex-wrap: nowrap;
}

.nav-link {
  white-space: nowrap;
}

/* Le bouton « Parler à un expert » reste toujours sur une ligne ; la colonne
   du menu peut rétrécir sans pousser le bouton. */
.header-actions .btn {
  white-space: nowrap;
}

.header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

/* ------------------------------------------------------------------ *
 * « Quel est votre problématique ? » : quand le cadre est trop étroit
 * pour le numéro ET le bouton sur une ligne, le numéro prend toute la
 * largeur et le bouton passe dessous (comme sur mobile).
 * ------------------------------------------------------------------ */
.problematique-form:not(.hero-phone-form) {
  container-type: inline-size;
}

@container (max-width: 36rem) {
  .problematique-form__combo {
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: calc(var(--radius-lg) + 2px);
  }

  .problematique-form__input-wrap {
    padding: 0.35rem 0.65rem 0.35rem 0.45rem;
  }

  .problematique-form__submit {
    width: 100%;
  }
}

/* ------------------------------------------------------------------ *
 * En-tête : un peu plus large que le contenu de la page, et deux paliers
 * de resserrement appliqués par scripts/main.js (setupHeaderFit) selon la
 * place réellement disponible, avant d'en venir au menu burger.
 * ------------------------------------------------------------------ */
@media (min-width: 769px) {
  .site-header .header-inner {
    width: min(1320px, 96vw);
  }
}

.site-header.is-nav-tight .header-inner {
  gap: 1rem;
}

.site-header.is-nav-tight .nav-link {
  padding-inline: 0.4rem;
}

.site-header.is-nav-tight .header-actions .btn {
  padding-inline: 1.15rem;
}

.site-header.is-nav-tighter .header-inner {
  gap: 0.75rem;
}

.site-header.is-nav-tighter .nav-link {
  font-size: 0.8rem;
  padding-inline: 0.3rem;
}

.site-header.is-nav-tighter .header-actions .btn {
  padding-inline: 0.95rem;
  font-size: 0.82rem;
}

.site-header.is-nav-tighter .logo img {
  height: 42px;
}

/* ------------------------------------------------------------------ *
 * Menu burger déclenché par la mesure réelle (scripts/main.js,
 * setupHeaderFit) : si les liens ne tiennent pas entre le logo et le
 * bouton « Parler à un expert » — police plus large, zoom… — l'en-tête
 * passe en menu burger au lieu de faire chevaucher le bouton.
 * ------------------------------------------------------------------ */
.site-header.is-nav-collapsed .nav-main {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--jat-white);
  border-bottom: 1px solid var(--jat-cream-dark);
  padding: 1rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
}

.site-header.is-nav-collapsed .nav-main.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-header.is-nav-collapsed .nav-list {
  flex-direction: column;
  align-items: stretch;
}

.site-header.is-nav-collapsed .nav-toggle {
  display: flex;
}

.site-header.is-nav-collapsed .header-phone {
  display: none;
}

.main--home .site-header.is-nav-collapsed:not(.is-scrolled) .nav-main.is-open {
  background: var(--jat-white);
}

.main--home .site-header.is-nav-collapsed:not(.is-scrolled) .nav-main.is-open .nav-link {
  color: var(--jat-text);
}
