:root {
  --bg: #f5f5f5;
  --bg-contrast: #ffffff;
  --ink: #111111;
  --muted: #555555;
  --brand: #FFCD11;
  --brand-dark: #e6b800;
  --accent: #111111;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius-lg: 4px;
  --radius-md: 4px;
  --radius-sm: 2px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, #c0c0c0 0%, #606068 100%);
  border-bottom: 3px solid var(--brand);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  gap: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 100px;
  width: auto;
  display: block;
  transform: translateY(15px);
  position: relative;
  z-index: 11;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  position: relative;
  color: #ffffff;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 700;
  display: inline-block;
  padding: 4px 0;
}


.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 0;
  background: var(--brand);
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.btn-light {
  background: #111111;
  color: var(--brand);
  box-shadow: none;
}

.btn-light:hover {
  background: #222222;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--brand);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--brand);
  color: #111111;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  font-weight: 700;
  font-size: 1.05rem;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-media {
  position: relative;
}

.hero-image {
  height: 420px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.12);
}

.hero-card-title {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.features {
  padding: 50px 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.features-grid article {
  flex: 0 1 300px;
}

.features article {
  background: var(--bg-contrast);
  padding: 22px;
  border-radius: 0;
  border-left: 4px solid var(--brand);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.features h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
}

.specs {
  padding: 70px 0;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  margin-top: 0;
}

.specs-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 28px;
}

.spec-card {
  background: #fff;
  border-radius: 0;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--brand);
}

.spec-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.spec-value {
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 6px;
}

.spec-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery {
  padding: 60px 0 80px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: stretch;
}

.gallery-main {
  background: #fff;
  border-radius: 0;
  padding: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 420px;
}

.gallery-main img {
  border-radius: 0;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
}

.gallery-thumbs .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 4px;
}

.thumb {
  border-radius: 0;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

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

.thumb.active {
  border-color: var(--brand);
}

/* Carousel — images 4 and beyond */
.gallery-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) #e0e0e0;
  padding: 4px 0 8px;
  margin-top: 16px;
}

.gallery-carousel:empty {
  display: none;
}

.gallery-carousel::-webkit-scrollbar {
  height: 4px;
}

.gallery-carousel::-webkit-scrollbar-track {
  background: #e0e0e0;
}

.gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--brand);
}

.gallery-carousel .thumb {
  flex: 0 0 200px;
  width: 200px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  box-shadow: var(--shadow);
}

.cta {
  padding: 60px 0 80px;
}

.cta-card {
  background: #111111;
  color: #fff;
  padding: 36px;
  border-radius: 0;
  border-left: 6px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: #111111;
  color: #fff;
  border-top: 4px solid var(--brand);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-note {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── Active nav link ── */
.nav a.active {
  color: var(--brand);
}

/* ── Footer text ── */
.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.footer-tag {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ── Homepage Hero ── */
.home-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/acceuil-img-principal.jpg') center/cover no-repeat;
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-hero-text {
  color: #fff;
  max-width: 700px;
  padding: 80px 0;
  margin: 0 auto;
  text-align: center;
}

.home-hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  margin: 10px 0 22px;
  color: #fff;
}

.home-hero-text .lead {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}

.home-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}

.home-hero-metrics {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}

.home-hero-metrics > div {
  display: flex;
  flex-direction: column;
}

.home-hero-metrics strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.home-hero-metrics span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

/* ── Stats strip ── */
.home-stats-strip {
  background: var(--brand);
}

.home-stats-row {
  display: flex;
  align-items: stretch;
}

.home-stat {
  flex: 1;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.home-stat:last-child {
  border-right: none;
}

.home-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.home-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(0, 0, 0, 0.58);
  margin-top: 6px;
}

/* ── Home generic section ── */
.home-section {
  padding: 35px 0;
}

.home-section--gray {
  background: var(--bg);
}

.home-section--dark {
  background: #111;
}

/* ── Intro ── */
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-intro-grid h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 8px 0 18px;
}

.home-intro-grid > div:first-child p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}

.home-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.home-value {
  background: #fff;
  border-top: 3px solid var(--brand);
  padding: 20px 18px;
}

.home-value-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.home-value p {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Certif on homepage ── */
.home-certif-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-certif-inner h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 8px 0 16px;
}

.home-certif-inner > div:first-child p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 28px;
  border-left: 4px solid var(--brand);
}

.testimonial-text {
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 18px;
}

.testimonial-author {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Home banner image ── */
.home-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/acceuil-img-principal.jpg') center/cover no-repeat;
  z-index: 0;
}

.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.home-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 30px 20px;
  max-width: 720px;
}

.home-banner-inner h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.home-banner-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 36px;
}

.btn-banner {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 14px 40px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-banner:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #111;
}

/* ── Homepage responsive ── */
@media (max-width: 900px) {
  .home-hero {
    min-height: 70vh;
  }

  .home-hero-text {
    padding: 60px 0;
  }

  .home-stats-row {
    flex-wrap: wrap;
  }

  .home-stat {
    flex: 0 0 33.33%;
  }

  .home-intro-grid,
  .home-certif-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .home-stat {
    flex: 0 0 50%;
  }

  .home-values {
    grid-template-columns: 1fr;
  }
}

/* ── Catalogue ── */
.catalogue-section {
  padding: 70px 0;
}

.catalogue-head {
  text-align: center;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 320px));
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.product-card {
  display: block;
  background: #fff;
  border-top: 4px solid var(--brand);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 24px;
}


.product-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  background: #111;
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.product-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.product-card-desc {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Product Hero ── */
.product-hero {
  background: #ffffff;
  color: #fff;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

/* Panneau noir diagonal */
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111111;
  clip-path: polygon(0 0, 51% 0, 61% 100%, 0 100%);
  z-index: 0;
}

/* Bordure jaune diagonale */
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  clip-path: polygon(51% 0, 51.5% 0, 61.5% 100%, 61% 100%);
  z-index: 1;
}

.product-hero .container {
  position: relative;
  z-index: 2;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 4px 0 8px;
  color: #fff;
}

.product-hero .eyebrow {
  margin-bottom: 0;
}

.product-hero .lead {
  color: rgba(255, 255, 255, 0.75);
  text-align: justify;
}

.product-hero-image {
  width: 115%;
  margin: 0 0 0 auto;
  transform: translateX(22%);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
}

.product-hero-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.product-hero-metrics .metric {
  color: var(--brand);
  font-size: 1.2rem;
}

.product-hero-metrics .metric-label {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Specs table ── */
.specs-category {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 36px auto 0;
  max-width: 700px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
  text-align: center;
}

.specs-table {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 0.95rem;
}

.specs-table th,
.specs-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.specs-table thead tr {
  background: #111;
}

.specs-table th {
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specs-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.specs-table td:first-child {
  color: var(--muted);
  font-weight: 500;
  width: 65%;
}

.specs-table td:last-child {
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #111111;
    position: absolute;
    top: 68px;
    right: 5vw;
    padding: 20px;
    border-radius: 0;
    border: 1px solid #333;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact ── */
.contact-section {
  padding: 70px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.form-group textarea {
  resize: vertical;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--brand);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.contact-info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
}

.contact-info-value:hover {
  color: var(--brand);
}

.confirm-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.confirm-popup.hidden {
  display: none;
}

.confirm-popup-box {
  background: #fff;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  border-top: 4px solid var(--brand);
}

.confirm-popup-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.confirm-popup-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.confirm-popup-box p {
  color: var(--muted);
  margin: 0 0 24px;
}

.contact-map {
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

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

/* ── À propos ── */
.about-hero {
  background: #111111;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/HT10B/photo-1.png') center/cover no-repeat;
  opacity: 0.08;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
}

.about-hero-inner h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 8px 0 16px;
}

.about-hero-inner .lead {
  color: rgba(255,255,255,0.75);
}

/* Stats */
.about-stats {
  background: #111111;
  padding: 40px 0;
  border-top: 1px solid #222;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
}

.stat-card {
  background: #1a1a1a;
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--brand);
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.about-section {
  padding: 70px 0;
  background: #fff;
}

.about-section--dark {
  background: #111111;
}

.about-section--gray {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-grid h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 8px 0 16px;
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
  margin: 12px 0;
}

.about-list li::marker {
  color: var(--brand);
}

.about-quote {
  border-left: 4px solid var(--brand);
  margin: 0 0 24px;
  padding: 16px 20px;
  background: #f9f9f9;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}

/* Certifications */
.certif-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.certif-card {
  background: #1a1a1a;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pourquoi nous — cartes */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 205, 17, 0.15);
  border-top: 3px solid var(--brand);
  padding: 28px 22px;
}

.why-card-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Pourquoi nous — détails */
.why-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 40px;
}

.why-detail h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding-left: 14px;
  border-left: 4px solid var(--brand);
  margin: 0 0 12px;
}

.why-detail p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}

/* Galerie documents certifications */
.certif-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.certif-doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.certif-doc img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 3px solid var(--brand);
  display: block;
}

.certif-doc-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--ink);
}

@media (max-width: 900px) {
  .certif-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .certif-docs-grid {
    grid-template-columns: 1fr;
  }
}

/* Entrepôts */
.about-warehouses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.warehouse-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warehouse-flag {
  font-size: 1.4rem;
}

.warehouse-count {
  margin-left: auto;
  background: var(--brand);
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
}

/* SAV */
.sav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.sav-card {
  background: #fff;
  padding: 24px;
  border-top: 4px solid var(--brand);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sav-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 10px;
}

.sav-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

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

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .product-hero-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 26px;
  }

  .home-hero-inner {
    padding: 40px 0;
  }
}
