/* ============================================================
   DUBOIS SYSTEMS — CSS V2
   Mobile-first, no external dependencies
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ──────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:          #fcf8f0;
  --color-bg-light:    #f0e9d8;
  --color-bg-dark:     #25221c;
  --color-bg-darker:   #1c1a15;
  --color-accent:      #d79a38;
  --color-accent-light:#f2b544;
  --color-text:        #25221c;
  --color-text-muted:  #6b6455;
  --color-text-light:  #fffaf2;
  --color-white:       #ffffff;
  --color-border:      rgba(37, 34, 28, 0.12);

  /* Typography */
  --font-display: 'Zodiak', Georgia, serif;
  --font-body:    'Satoshi', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* Layout */
  --container-max:  1180px;
  --container-pad:  clamp(1rem, 4vw, 3rem);
  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --radius-full:    100px;

  /* Transitions */
  --transition: 0.2s ease;
}

/* ────────────────────────────────────────────────────────────
   2. RESET
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* ────────────────────────────────────────────────────────────
   3. UTILITIES
   ──────────────────────────────────────────────────────────── */
.container {
  width: min(100% - var(--container-pad) * 2, var(--container-max));
  margin-inline: auto;
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.eyebrow {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
  }

 .hero .eyebrow {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.08em;
  }
  
.eyebrow--light {
  color: rgba(255, 250, 242, 1);
}

.accent-line {
  width: 50px;
  height: 6px;
  background-color: var(--color-accent-light);
  border-radius: 2px;
  margin-bottom: var(--space-4);
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-12);
}

/* ────────────────────────────────────────────────────────────
   4. BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
  background-color: var(--color-text);
  color: var(--color-text-light);
  border: 2px solid var(--color-text);
}

.btn:hover {
  opacity: 0.85;
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 250, 242, 0.6);
}

.btn--outline-white:hover {
  background-color: rgba(255, 250, 242, 0.1);
  opacity: 1;
}

.btn--large {
  padding: 16px 36px;
  font-size: var(--text-base);
}

/* ────────────────────────────────────────────────────────────
   5. SECTIONS
   ──────────────────────────────────────────────────────────── */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  background-color: var(--color-bg);
}

.section--light {
  background-color: var(--color-bg-light);
}

.section--light-dark {
  background-color: #e8e0d0;
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--dark .eyebrow {
  color: var(--color-accent);
}

.section__header {
  margin-bottom: var(--space-12);
}

.section__header h2 {
  margin-top: var(--space-3);
  font-size: clamp(2rem, 3vw, 3rem);
}

/* ────────────────────────────────────────────────────────────
   6. NAVBAR
   ──────────────────────────────────────────────────────────── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  width: min(100% - var(--container-pad) * 2, var(--container-max));
  margin-inline: auto;
  min-height: 80px;
}

.navbar__logo {
  height: 65px;
  width: auto;
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.navbar__link {
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: 500;
  transition: opacity var(--transition);
}

.navbar__link:hover {
  opacity: 0.7;
}

.navbar__cta {
  display: none;
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.navbar__mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(37, 34, 28, 0.90);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px var(--space-8) var(--space-10);
  gap: var(--space-4);
  z-index: 99;
  overflow-y: auto;
}

.navbar__mobile[hidden] {
  display: none;
}

.navbar__mobile-link {
  font-size: 1.0rem;
  font-weight: 500;
  color: var(--color-text-light);
  padding-block: var(--space-3);
  width: 100%;
  border-bottom: 1px solid rgba(255,250,242,0.1);
}

/* ────────────────────────────────────────────────────────────
   7. HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(600px, 86.8vh, 960px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 24, 16, 0.45) 0%,
    rgba(30, 24, 16, 0.10) 20%,
    rgba(30, 24, 16, 0) 40%,
    rgba(30, 24, 16, 0.12) 70%,
    rgba(30, 24, 16, 0.66) 100%
  );
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-loaded .hero__img {
    transform: scale(1);
  }

.hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3rem, 17vw, 8rem);
}

/* Mobile : image plus haute, texte/bouton plus proches du bas de l'image */
@media screen and (max-width: 767px) {
  .hero {
    min-height: clamp(650px, 86.8vh, 960px);
    min-height: clamp(650px, 100dvh, 960px);
  }

  .hero__inner {
    padding-bottom: clamp(2.5rem, 14vw, 5rem);
  }

  .hero__content {
    text-align: center;
    margin-inline: auto;
  }

  .hero__img {
      object-position: center center;
    }

  .hero .accent-line {
    margin-inline: auto;
  }

  .apropos .eyebrow {
    text-align: center;
  }
  .cas-reels .eyebrow {
      text-align: center;
    }
}

.hero__content {
  max-width: 640px;
}

.hero__title {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
  line-height: 1.04;
}

/* ────────────────────────────────────────────────────────────
   8. CIBLES
   ──────────────────────────────────────────────────────────── */
.targets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.target-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
}

.target-card__img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.target-card__title {
  font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
  margin-bottom: var(--space-3);
}

/* ────────────────────────────────────────────────────────────
   9. APPROCHE
   ──────────────────────────────────────────────────────────── */
.approche__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .approche__title {
    font-size: 1.3rem;
    margin-top: var(--space-3);
  }

.approche__line {
  max-width: 160px;
  margin-inline: auto;
}

.approche__right {
    width: min(100%, 680px);
    margin-inline: auto;
    text-align: center;
  }

  .approche__right .btn {
    display: flex;
    width: max-content;
    margin-inline: auto;
  }

.approche__text {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  line-height: 1.7;
  margin-bottom: var(--space-6);
  text-align: center;
}

.approche__deco {
  display: flex;
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────
   10. SERVICES
   ──────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-block: var(--space-10);
}

.service-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.section--light .service-card {
  background-color: var(--color-bg);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: var(--space-4);
}

.service-card__title {
  font-size: clamp(var(--text-lg), 1.5vw, var(--text-xl));
  margin-bottom: var(--space-3);
}

/* ────────────────────────────────────────────────────────────
   11. À PROPOS
   ──────────────────────────────────────────────────────────── */
.apropos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

.apropos__img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.apropos__content h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  margin-block: var(--space-3) var(--space-6);
}

.apropos__content p {
  font-size: clamp(var(--text-base), 1.2vw, var(--text-lg));
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
@media screen and (max-width: 767px) {
.apropos__content .btn {
  display: flex;
  width: max-content;
  margin-inline: auto;
  }
  }

/* ────────────────────────────────────────────────────────────
   12. PROCESSUS
   ──────────────────────────────────────────────────────────── */
.processus {
  position: relative;
  overflow: hidden;
  padding-bottom: 8rem;
}

.processus h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  margin-block: var(--space-3) var(--space-12);
}

.processus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.processus__deco {
  display: none;
}

.process-step__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
}

.process-step__divider {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 250, 242, 0.2);
  min-width: 20px;
}

.process-step h3 {
  font-size: clamp(var(--text-base), 1.3vw, var(--text-lg));
  color: var(--color-text-light);
  width: 100%;
}

.process-step p {
  font-size: clamp(var(--text-sm), 1.1vw, var(--text-base));
  line-height: 1.65;
  color: rgba(255, 250, 242, 1);
}

/* ────────────────────────────────────────────────────────────
   13. STATS
   ──────────────────────────────────────────────────────────── */
.stats {
    position: relative;
    background-color: var(--color-bg);
  }

.stats::before {
    content: "";
    display: none;
    position: absolute;
    inset: 0 0 auto;
    height: 0;
    background-color: var(--color-bg-dark);
    z-index: 0;
  }

.stats > .container {
    position: relative;
    z-index: 1;
  }

.stats__team-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-top: -9rem;
    margin-bottom: var(--space-10);
  }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-block: var(--space-6);
  border-top: none;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    color: var(--color-text);
    line-height: 1.4;
    opacity: 1;
  }

@media screen and (max-width: 767px) {
    .stats__grid {
      grid-template-columns: 1fr;
      gap: 0;
      padding-bottom: var(--space-12);
      border-bottom: 1px solid var(--color-text);
    }

    .stat {
      align-items: center;
      text-align: center;
      padding-block: var(--space-10);
      border-top: none;
    }

    .stats .divider {
    display: none;
  }

    .stat__num {
      font-size: 3rem;
    }
  }

/* ────────────────────────────────────────────────────────────
   14. CAS RÉELS / TABS
   ──────────────────────────────────────────────────────────── */
.cas-reels .section__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.cas-reels__intro {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 500;
}

.cas-reels__showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding: clamp(1rem, 4vw, 2rem);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
  }

.tabs {
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: clamp(0.5rem, 2vw, 2rem);
    align-items: center;
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

.tab {
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 0;
    opacity: 0.4;
    transition: opacity var(--transition);
    padding: 0;
    background: none;
    border: none;
  }

  .tab[hidden] {
    display: none !important;
  }

.tab--active,
.tab[aria-selected="true"] {
  opacity: 1;
}

.tab__logo {
    width: auto;
    height: 90px;
    max-width: 100%;
    object-fit: contain;
  }

.tab-panels {
    order: 1;
    margin-top: 0;
  }

.tab-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
    background-color: transparent;
    padding: 0;
    overflow: hidden;
  }

.tab-panel[hidden] {
  display: none;
}

.tab-panel__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: none;
    border-radius: var(--radius-sm);
    object-fit: cover;
  }

 .tab-panel__content {
    align-self: center;
  }
  
.tab-panel__content h3 {
  font-size: clamp(var(--text-xl), 1.8vw, var(--text-2xl));
  margin-bottom: var(--space-4);
}

.tab-panel__content p {
  font-size: clamp(var(--text-base), 1.3vw, var(--text-lg));
  line-height: 1.65;
}

.tab-panel__client {
  font-size: var(--text-sm) !important;
  color: var(--color-text-muted);
  margin-top: var(--space-6) !important;
}

@media screen and (max-width: 767px) {
    .tab-panel__content {
      text-align: center;
      padding-inline: 0.5rem;
    }

  }

/* ────────────────────────────────────────────────────────────
   15. CTA SECTION
   ──────────────────────────────────────────────────────────── */
.cta-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

.cta-section__img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  max-height: 480px;
}

.cta-section__content h2 {
  font-size: clamp(var(--text-2xl), 2.5vw, var(--text-4xl));
  margin-block: var(--space-3) var(--space-4);
}

.cta-section__content p {
  font-size: clamp(var(--text-base), 1.2vw, var(--text-lg));
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

/* ────────────────────────────────────────────────────────────
   16. BLOG
   ──────────────────────────────────────────────────────────── */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-block: var(--space-10);
}

.blog-card__link {
  display: block;
  height: 100%;
}

.blog-card__link--draft {
    cursor: default;
  }

  .blog-card__link--draft:hover .blog-card__img {
    transform: none;
  }

.blog-card__img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card__link:hover .blog-card__img {
  transform: scale(1.03);
}

.blog-card__title {
  font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
  margin-bottom: var(--space-3);
}

.blog-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────
   17. FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
    padding-block: var(--space-12);
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  /* Zone légèrement plus claire de la newsletter */
  .footer__newsletter {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: clamp(1.5rem, 6vw, 3rem);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
  }

  .footer__brand {
    display: block;
    justify-self: center;
  }

  .footer__logo {
    display: block;
    width: auto;
    height: 40px;
    margin: 0;
  }

  .newsletter-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .newsletter-form .inf-input,
  .newsletter-form .inf-submit {
    display: contents;
  }

  .newsletter-form__privacy {
    max-width: 42rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .newsletter-form__success {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.5;
  }

  .newsletter-form__success p {
    margin: 0 0 0.75rem;
  }

  .newsletter-form__back {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  /* Newsletter mobile : champ et bouton superposés */
  .newsletter-form {
    width: 100%;
  }

  .newsletter-form__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .newsletter-form__input {
    width: 100%;
    min-height: 56px;
    padding: 0 1.5rem;
    background-color: var(--color-bg);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    outline: none;
  }

  .newsletter-form__input::placeholder {
    color: rgba(30, 24, 16, 0.45);
  }

  .newsletter-form__btn {
    width: 100%;
    min-height: 56px;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--radius-full);
    background-color: var(--color-accent);
    color: var(--color-text-light);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: normal;
    cursor: pointer;
  }

  /* Partie inférieure */
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: start;
  }

  .footer__statement {
    font-family: var(--font-display);
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    line-height: 1.4;
    color: var(--color-text-light);
  }

  /* Les quatre liens restent sur une ligne */
  .footer__links {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    gap: var(--space-3);
    width: 100%;
  }

  .footer__links a {
    font-size: var(--text-sm);
    color: rgba(255, 250, 242, 0.6);
    font-weight: 500;
    white-space: nowrap;
  }

  .footer__links a:hover {
    color: var(--color-text-light);
  }

  .footer__legal {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 250, 242, 0.1);
    color: rgba(255, 250, 242, 0.35);
    font-size: var(--text-xs);
  }

/* ────────────────────────────────────────────────────────────
   18. TABLETTE — 768px+
   ──────────────────────────────────────────────────────────── */
@media screen and (min-width: 768px) {

 .hero__content {
    max-width: 760px;
  }
  
  .hero__title {
    font-size: clamp(2.5rem, 5.2vw, 5rem);
  }

  .navbar__nav {
    display: flex;
  }

  .navbar__cta {
    display: inline-flex;
  }

  .navbar__burger {
    display: none;
  }

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

  .target-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .target-card__img {
    max-width: 200px;
    flex-shrink: 0;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .apropos__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .apropos__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .processus {
    padding-bottom: 12rem;
  }

  .processus__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(400px, 1fr);
    column-gap: var(--space-8);
    align-items: stretch;
  }

  .processus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 0;
  }

  .processus__deco {
    display: block;
    position: static;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: none;
    align-self: stretch;
    justify-self: stretch;
    object-fit: cover;
    object-position: left center;
    transform: none;
    opacity: 0.25;
  }

  .stats__team-img {
    margin-top: -12rem;
  }

  .stats::before {
    display: block;
    height: 14rem;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats .divider {
    border: none;
    border-top: 1px solid var(--color-text);
  }

  .cas-reels .section__header {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .tab-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    padding: 0;
    min-height: 460px;
    }

  .tab-panel__img {
    height: 100%;
    min-height: 360px;
    aspect-ratio: auto;
  }

  .tab-panel__content {
    text-align: left;
    padding-right: clamp(1rem, 3vw, 3rem);
  }

  .cta-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Logo à gauche et formulaire à droite */
  .footer__newsletter {
    grid-template-columns: minmax(220px, 0.8fr) minmax(420px, 1.2fr);
    align-items: start;
  }

  .footer__brand {
    justify-self: start;
    margin-top: 8px;
  }

  .newsletter-form__inner {
    flex-direction: row;
    gap: 0;
    padding: 0px;
    background-color: var(--color-bg);
    border-radius: var(--radius-full);
    overflow: hidden;
  }

  .newsletter-form__input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
  }

  .newsletter-form__btn {
    width: auto;
    flex-shrink: 0;
    min-height: 56px;
    padding-inline: clamp(1rem, 2vw, 2rem);
    white-space: nowrap;
  }

  /* Phrase à gauche, liens à droite sur une ligne */
  .footer__bottom {
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: var(--space-10);
    align-items: start;
  }

  .footer__links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: clamp(1.5rem, 3vw, 4rem);
    width: auto;
  }

  .approche {
    min-height: 100dvh;
    display: flex;
  }

  .approche__inner {
    flex: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(180px, 1fr) auto;
    grid-template-areas:
      "left left"
      "deco deco"
      ". right";
    align-items: stretch;
  }

  .approche__left {
    grid-area: left;
    max-width: 900px;
    align-self: start;
    margin-left: clamp(1.5rem, 4vw, 3rem);
  }

  .approche__deco {
    grid-area: deco;
    align-self: start;
    justify-self: center;
    margin-top: 1rem;
    transform: translateX(-3rem);
  }

  .approche__line {
    max-width: min(28vw, 260px);
  }

  .approche__right {
    grid-area: right;
    width: min(100%, 480px);
    justify-self: end;
    align-self: end;
    text-align: center;
    position: relative;
    top: -5rem;
  }

  .approche__text {
    font-size: 1.16rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
    transform: translate(-0rem, 2rem);
  }

  .approche__right .btn {
    display: flex;
    width: max-content;
    margin-inline: auto;
  }

  .approche__title {
    font-size: clamp(2rem, 3.3vw, 3rem);
  }
}

/* ────────────────────────────────────────────────────────────
   19. DESKTOP — 992px+
   ──────────────────────────────────────────────────────────── */
@media screen and (min-width: 992px) {

   .hero__content {
    max-width: none;
  }

  .hero {
    min-height: clamp(700px, 100vh, 1080px);
  }

 .hero__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
  
  .target-card__img {
    max-width: 240px;
  }

  .processus__deco {
    opacity: 0.25;
  }

}
 /* ────────────────────────────────────────────────────────────
     20. IPAD / TABLETTE PAYSAGE
     ──────────────────────────────────────────────────────────── */
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .approche {
      min-height: 100dvh;
      display: flex;
    }

    .approche__left {
      align-self: start;
      max-width: 700px;
    }

    .approche__right {
      align-self: end;
      left: 3rem;
    }

    .approche__line {
      max-width: min(24vw, 220px);
    }

    .approche__right .btn {
    transform: translate(-10rem, 3rem);
  }
  }

   /* ────────────────────────────────────────────────────────────
     21. GRANDS ECRANS - ALIGNEMENT AVEC LES IMAGES
     ──────────────────────────────────────────────────────────── */

  @media screen and (min-width: 1200px) { 
    .processus {
     padding-bottom: 17rem;
    }

   .stats__team-img {
     margin-top: -15rem;
    }

    .stats::before {
    height: 16rem;
  }
    
    .approche {
      min-height: auto;
      padding-bottom: 2rem;
    }

    .approche__inner {
      grid-template-rows: auto auto auto;
      row-gap: 1rem;
    }

    .approche__left {
      margin-left: clamp(12rem, 20vw, 20rem);
    }

   .approche__right {
     justify-self: start;
    margin-left: 6rem;
    margin-right: 0;
    top: -1rem;
    }
    
    .approche__text {
      margin-top: 0rem;
      transform: none;
    }

    .approche__right .btn {
      margin-left: 0;
      margin-right: auto;
      transform: none;
    }
  }

   /* ────────────────────────────────────────────────────────────
     ANIMATION COMMUNE DES FAQ
     ──────────────────────────────────────────────────────────── */

  .pricing-faq__answer,
  .about-faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .pricing-faq__answer.is-open,
  .about-faq__answer.is-open {
    max-height: 30rem;
    opacity: 1;
    transform: translateY(0);
  }
  
   /* ────────────────────────────────────────────────────────────
     ANIMATIONS AU DÉFILEMENT
     ──────────────────────────────────────────────────────────── */

  /* État initial : remontée + fondu */
  .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.8s ease-out,
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* État initial : fondu simple */
  .reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
  }

  /* État initial : déploiement horizontal */
  .reveal-line {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* État visible commun */
  .reveal-up.is-visible,
  .reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-line.is-visible {
    transform: scaleX(1);
  }

  /* Délais progressifs */
  .reveal-delay-1 {
    transition-delay: 0.2s;
  }

  .reveal-delay-2 {
    transition-delay: 0.4s;
  }

  .reveal-delay-3 {
    transition-delay: 0.6s;
  }

  .reveal-delay-4 {
    transition-delay: 0.8s;
  }

  /* Accessibilité : désactive les animations si demandé */
  @media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-fade,
    .reveal-line {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
