/* ═══ OFFRE PAGES (shared layout) ═══ */

/* Hero */
.offre-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 118px 20px 80px;
  min-height: 100svh;
  background: var(--noir);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Filigrane illustration (telescope, astronaut…) */
.offre-hero__filigrane {
  position: absolute;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
  height: auto;
}

.offre-hero__filigrane--left {
  left: -320px;
  bottom: -80px;
  width: 620px;
}

@media (max-width: 1023px) {
  .offre-hero__filigrane {
    position: static;
    order: 99;
    opacity: 0.18;
    width: 260px;
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .offre-hero__filigrane {
    width: 200px;
    opacity: 0.15;
  }
}

/* Subtle grid background */
.offre-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 45%, black 30%, transparent 85%);
  pointer-events: none;
}

.offre-hero--left {
  align-items: flex-start;
  text-align: left;
}

.offre-hero--split {
  min-height: 100svh;
  overflow: hidden;
}

.offre-hero__content {
  position: relative;
  z-index: 2;
}

.offre-hero__model {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 400px;
}

.offre-hero__model model-viewer,
.offre-hero__viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
}

.offre-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(184, 150, 90, 0.10);
  border: 1px solid rgba(184, 150, 90, 0.25);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.offre-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.offre-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  max-width: 970px;
  position: relative;
  z-index: 1;
}

.offre-hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.offre-hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.offre-hero__sub strong {
  color: #fff;
}

.offre-hero__cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

.offre-hero__cta-row .btn-primary {
  text-align: center;
}

.offre-hero__cta-row .btn-outline {
  text-align: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}

.offre-hero__cta-row .btn-outline:hover {
  opacity: 1;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero proof bar */
.offre-hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-500);
}

.offre-hero__proof-sep {
  color: var(--brume);
}

/* Generic section */
.offre-section {
  padding: 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.offre-section--alt {
  background: var(--gris-50);
  max-width: none;
}

.offre-section--alt > .offre-section__header,
.offre-section--alt > .offre-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.offre-section--dark {
  background: var(--noir);
  max-width: none;
  padding-top: 64px;
  padding-bottom: 64px;
}

.offre-section--dark .offre-section__title {
  color: #fff;
}

.offre-section--dark .offre-section__sub {
  color: rgba(255,255,255,0.5);
}

.offre-section--dark > .offre-section__header,
.offre-section--dark > .offre-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.offre-section--cta {
  background: var(--cta-bg);
  max-width: none;
}

.offre-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 36px;
}

.offre-section__header--left {
  align-items: flex-start;
  text-align: left;
}

.offre-section__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--tag-color);
}

.offre-section__tag--light {
  color: var(--brume);
}

.offre-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--noir);
}

.offre-section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
}

.offre-section--dark .offre-section__title em {
  color: var(--accent-text);
}

.offre-section--dark .offre-section__title {
  color: var(--text-dark);
}

.offre-section__sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gris-500);
  max-width: 600px;
}

.offre-section--dark .offre-section__sub {
  color: var(--gris-500);
}

/* Trust bar */
.offre-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 20px;
  text-align: center;
}

.offre-trust__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--noir);
}

.offre-trust__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offre-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gris-600);
}

.offre-trust__item svg {
  color: var(--tag-color);
  flex-shrink: 0;
}

.offre-grid--spaced {
  margin-top: 24px;
}

/* Cards grid */
.offre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.offre-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: var(--blanc);
  border: 1px solid var(--gris-200);
}


.offre-card--dark {
  background: var(--noir-card);
  border-color: var(--gris-800);
}

.offre-card--accent {
  background: var(--noir-bg);
  border: 2px solid var(--brume-deep);
}

.offre-card--accent .offre-card__title {
  color: var(--text-dark);
}

.offre-card--accent .offre-card__desc {
  color: var(--gris-600);
}

.offre-card__icon--accent {
  background: rgba(184, 150, 90, 0.15);
  color: var(--brume);
}

.offre-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(184, 150, 90, 0.08);
  color: var(--brume-deep);
}

.offre-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--noir);
}

.offre-card--dark .offre-card__title {
  color: var(--text-dark);
}

.offre-card__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gris-500);
}

.offre-card--dark .offre-card__desc {
  color: var(--gris-600);
}

.offre-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offre-card__list li {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--gris-600);
}

/* Steps / How it works */
.offre-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-reset: step;
}

.offre-step {
  display: flex;
  gap: 20px;
  counter-increment: step;
}

.offre-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tag-color);
  color: var(--blanc);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.offre-step__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offre-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--noir);
}

.offre-step__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gris-600);
}

/* Problem section */
.offre-problem {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offre-problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--gris-50);
}

.offre-problem__item svg {
  color: var(--tag-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.offre-problem__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris-600);
}

/* Tabs (vertical nav + panel) */
/* ── Mobile: horizontal scrollable pills ── */
.offre-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offre-tabs__nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.offre-tabs__nav::-webkit-scrollbar { display: none; }

.offre-tabs__trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--gris-200);
  background: var(--blanc);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Hide icon and description on mobile, keep only strong title */
.offre-tabs__trigger svg { display: none; }
.offre-tabs__trigger span { display: none; }
.offre-tabs__trigger strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--noir);
}
.offre-tabs__trigger div { display: flex; }

.offre-tabs__trigger:hover {
  border-color: var(--brume-soft);
}

.offre-tabs__trigger--active,
.offre-tabs__trigger.tabs__trigger--active {
  border-color: var(--accent);
  background: rgba(184, 150, 90, 0.08);
  box-shadow: 0 0 0 1px rgba(184, 150, 90, 0.15), 0 2px 8px rgba(184, 150, 90, 0.08);
  position: relative;
  overflow: hidden;
}

.offre-tabs__trigger--active strong,
.offre-tabs__trigger.tabs__trigger--active strong {
  color: var(--accent-dark);
}

.offre-tabs__trigger--active svg,
.offre-tabs__trigger.tabs__trigger--active svg {
  color: var(--accent-dark);
}

/* Scroll-pinned tabs — JS locks body scroll, no wrapper needed */

/* Progress bar on active trigger inside pinned tabs */
[data-tabs-scroll-pinned-value] .offre-tabs__trigger--active::after,
[data-tabs-scroll-pinned-value] .offre-tabs__trigger.tabs__trigger--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: tabs-bar-in 0.35s ease forwards;
}

@keyframes tabs-bar-in {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.offre-tabs__trigger svg {
  color: var(--brume-deep);
  flex-shrink: 0;
}

.offre-tabs__trigger strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--noir);
}

.offre-tabs__trigger span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gris-500);
  margin-top: 2px;
}

.offre-tabs__panel {
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--gris-50);
  border: 1px solid var(--gris-200);
}

.offre-tabs__panel--hidden,
.tabs__panel--hidden {
  display: none;
}

.tabs__panel--visible {
  display: block;
}

.offre-tabs__panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--noir);
  margin-bottom: 16px;
}

.offre-tabs__panel-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris-600);
  margin-bottom: 24px;
}

.offre-tabs__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offre-tabs__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gris-600);
}

.offre-tabs__features li svg {
  color: var(--brume-deep);
  flex-shrink: 0;
}

/* Card number (steps) */
.offre-card__num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--brume-deep);
}

.offre-card__num--big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brume);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* ── Timeline (étapes & livrables) ── */
.offre-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.offre-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--brume), rgba(184, 150, 90, 0.15));
  z-index: 0;
}

.offre-timeline__step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.offre-timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--noir-bg);
  border: 1.5px solid rgba(184, 150, 90, 0.3);
  box-shadow: 0 0 0 10px var(--noir-bg);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--brume);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.offre-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: var(--blanc);
  border: 1px solid var(--gris-200);
  flex: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.offre-timeline__step:hover .offre-timeline__content {
  border-color: rgba(184, 150, 90, 0.3);
  box-shadow: 0 4px 16px rgba(184, 150, 90, 0.08);
}

.offre-timeline__step:hover .offre-timeline__num {
  background: rgba(184, 150, 90, 0.2);
  border-color: var(--brume);
}

.offre-timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--noir);
  margin: 0;
}

.offre-timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offre-timeline__list li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gris-600);
  padding-left: 16px;
  position: relative;
}

.offre-timeline__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(184, 150, 90, 0.4);
}

.offre-timeline__livrable {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brume);
  padding-top: 4px;
}

/* ── Timeline sticky stacking (mobile) ── */
@media (max-width: 767px) {
  .offre-timeline {
    gap: 0;
  }

  .offre-timeline::before {
    display: none;
  }

  .offre-timeline__step {
    position: sticky;
    top: 64px;
    z-index: 1;
    padding: 8px 0;
    flex-direction: column;
    gap: 0;
  }

  .offre-timeline__step:nth-child(1) { top: 64px; z-index: 6; }
  .offre-timeline__step:nth-child(2) { top: 72px; z-index: 5; }
  .offre-timeline__step:nth-child(3) { top: 80px; z-index: 4; }
  .offre-timeline__step:nth-child(4) { top: 88px; z-index: 3; }
  .offre-timeline__step:nth-child(5) { top: 96px; z-index: 2; }
  .offre-timeline__step:nth-child(6) { top: 104px; z-index: 1; }

  .offre-timeline__num {
    display: none;
  }

  .offre-timeline__content {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--gris-200);
    background: var(--blanc);
  }

  .offre-timeline__title::before {
    content: attr(data-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(184, 150, 90, 0.15);
    color: var(--accent-text);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
  }

  .offre-timeline__title {
    display: flex;
    align-items: center;
  }
}

/* ── Exemples concrets grid ── */
.offre-exemples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.offre-exemple-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.offre-exemple-card__screen {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gris-50);
  border: 1px solid var(--gris-200);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transform: perspective(800px) rotateY(-1deg) rotateX(1deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offre-exemple-card:hover .offre-exemple-card__screen {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

.offre-exemple-card__screen svg {
  display: block;
  width: 100%;
  height: auto;
}

.offre-exemple-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 480px;
}

.offre-exemple-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--noir);
  margin: 0;
}

.offre-exemple-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gris-600);
  margin: 0;
}

@media (min-width: 768px) {
  .offre-exemples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .offre-exemple-card__title {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .offre-exemples-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
  }

  .offre-exemple-card__title {
    font-size: 18px;
  }

  .offre-exemple-card__desc {
    font-size: 16px;
  }
}

/* FAQ container */
.offre-faq {
  max-width: 740px;
  margin: 0 auto;
}

/* FAQ (reuses existing faq styles) */

/* Contact form section */
.offre-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background: var(--sable);
}

.offre-contact__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.offre-contact__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--noir);
}

.offre-contact__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
}

.offre-contact__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.offre-contact__form-wrapper {
  background: var(--noir-bg);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--gris-200);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.offre-contact__form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--brume-deep), var(--accent));
}

.offre-contact__form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
}

.offre-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offre-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offre-contact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gris-400);
}

.offre-contact__input {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--gris-200);
  background: var(--blanc);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s;
}

.offre-contact__input::placeholder {
  color: var(--gris-400);
}

.offre-contact__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.1);
}

.offre-contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.offre-contact__textarea {
  resize: vertical;
  min-height: 100px;
}

.offre-contact__submit {
  width: 100%;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px;
}

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

  .offre-contact__title {
    font-size: 28px;
  }
}

/* Impact stats bar */
.offre-impact {
  background: var(--noir);
  padding: 0 20px;
}

.offre-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.offre-impact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 36px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.offre-impact__item:last-child {
  border-right: none;
}

.offre-impact__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
}

.offre-impact__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* Section CTA center */
.offre-section__cta-center {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .offre-impact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offre-impact__item {
    padding: 24px 12px;
  }
  .offre-impact__item:nth-child(2) {
    border-right: none;
  }
  .offre-impact__num {
    font-size: 1.5rem;
  }
}

/* CTA final */
.offre-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 80px 20px;
  background: var(--cta-bg);
  text-align: center;
}

.offre-cta__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--tag-color);
}

.offre-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1.5px;
  color: var(--noir);
}

.offre-cta__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris-600);
  max-width: 600px;
}

.offre-cta__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Divider */
.offre-divider {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.offre-divider hr {
  border: none;
  border-top: 1px solid var(--gris-200);
}

/* ═══ EXPERT DATA: Ecosystem bar ═══ */
.offre-ecosystem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background: #111113;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.offre-ecosystem__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
}

.offre-ecosystem__row {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.offre-ecosystem__dot {
  color: rgba(255, 255, 255, 0.2);
}

/* Trust bar (Expert Data style) */
.offre-trust__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gris-500);
}

.offre-trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--gris-400);
}

/* Avant / Après cards */
.offre-avant-apres {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 90, 0.19);
  background: var(--blanc);
}

.offre-avant-apres__avant {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--brume-pale);
}

.offre-avant-apres__avant p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.offre-avant-apres__apres {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.offre-avant-apres__apres p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--noir);
}

.offre-avant-apres__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.offre-avant-apres__tag--after {
  color: var(--brume-deep);
}

/* Diagnostic features (dark section) */
.offre-diag-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.offre-diag-feature svg {
  color: var(--brume);
}

.offre-diag-feature h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.offre-diag-feature p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}

/* Subtitle (lighter weight) */
.offre-ia-subtitle {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -1px;
  color: var(--text-secondary);
}

/* ═══ INTELLIGENCE EMBARQUÉE ═══ */

/* IA header (side-by-side title + desc) */
.offre-ia-header {
  margin-bottom: 48px;
}

.offre-ia-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.offre-ia-header__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gris-600);
  max-width: 500px;
}

/* Benefits */
.offre-ia-benefit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offre-ia-benefit svg {
  color: var(--brume);
}

.offre-ia-benefit h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.offre-ia-benefit p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--gris-600);
}

/* CTA box (inline) */
.offre-ia-cta-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 32px;
  border-radius: 16px;
  border: 1px solid var(--gris-200);
}

.offre-ia-cta-box h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text-dark);
}

.offre-ia-cta-box p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gris-600);
}

/* Split nav (que peut l'IA) */
.offre-ia-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.offre-ia-split__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.offre-ia-split__items {
  display: flex;
  flex-direction: column;
}

.offre-ia-split__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--gris-200);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gris-600);
}

.offre-ia-split__item:last-child {
  border-bottom: 1px solid var(--gris-200);
}

.offre-ia-split__item svg {
  flex-shrink: 0;
}

.offre-ia-split__item--active {
  color: var(--text-dark);
  font-weight: 600;
}

.offre-ia-split__item--active svg {
  color: var(--brume-deep);
}

.offre-ia-split__content {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gris-600);
}

/* IA Steps (method) */
.offre-ia-steps {
  display: flex;
  flex-direction: column;
}

.offre-ia-step {
  padding: 48px 0;
  border-bottom: 1px solid var(--gris-200);
}

.offre-ia-step:first-child {
  padding-top: 0;
}

.offre-ia-step__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 4px;
  background: var(--gris-100);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gris-500);
  margin-bottom: 16px;
}

.offre-ia-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--noir);
  margin-bottom: 16px;
}

.offre-ia-step__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--gris-500);
  max-width: 500px;
}

/* Tags cloud */
.offre-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.offre-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gris-500);
  background: var(--blanc);
  border: 1px solid var(--gris-200);
}

.offre-tag--more {
  background: rgba(184, 150, 90, 0.08);
  border-color: rgba(184, 150, 90, 0.3);
  color: var(--brume-deep);
  font-style: italic;
}

/* ═══ Tags marquee ═══ */

.offre-tags-marquee {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.offre-tags-marquee__row {
  overflow: hidden;
}

.offre-tags-marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

.offre-tags-marquee__row--left .offre-tags-marquee__track {
  animation: marquee-left 30s linear infinite;
}

.offre-tags-marquee__row--right .offre-tags-marquee__track {
  animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .offre-tags-marquee__track {
    animation: none !important;
  }
}

/* ═══ HERO SPLIT (3D model) ═══ */

.offre-hero--split {
  flex-direction: column;
  gap: 40px;
}

.offre-hero--split .offre-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}


@media (min-width: 768px) {
  .offre-hero--split {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    text-align: left;
    padding: 80px 48px 64px;
  }

  .offre-hero--split .offre-hero__content {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  .offre-hero__model {
    flex: 1;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .offre-hero--split {
    padding: 80px 120px;
    gap: 64px;
  }

  .offre-hero__model {
    height: 600px;
  }
}

/* ═══ MOBILE: compact cards in grid--3 & grid--4 ═══ */
@media (max-width: 767px) {
  .offre-grid--3 .offre-card,
  .offre-grid--4 .offre-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .offre-grid--3 .offre-card__desc,
  .offre-grid--4 .offre-card__desc {
    display: none;
  }

  .offre-grid--3 .offre-card__title,
  .offre-grid--4 .offre-card__title {
    font-size: 0.875rem;
  }

  .offre-grid--3 .offre-card__icon,
  .offre-grid--4 .offre-card__icon,
  .offre-grid--3 .offre-card__role-icon,
  .offre-grid--4 .offre-card__role-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .offre-grid--3 .offre-card__role-icon svg,
  .offre-grid--4 .offre-card__role-icon svg,
  .offre-grid--3 .offre-card svg,
  .offre-grid--4 .offre-card svg {
    width: 20px;
    height: 20px;
  }

  .offre-grid--3,
  .offre-grid--4 {
    gap: 8px;
  }
}

/* ═══ RESPONSIVE ═══ */
@media (min-width: 768px) {
  .offre-card {
    gap: 12px;
    padding: 24px 20px;
  }

  .offre-card__icon {
    width: 40px;
    height: 40px;
  }

  .offre-card__list {
    gap: 8px;
  }

  .offre-card__list li {
    font-size: 14px;
    line-height: 1.6;
  }

  .offre-hero {
    padding: 80px 48px 64px;
  }

  .offre-hero__title {
    font-size: 58px;
  }

  .offre-hero__sub {
    font-size: 17px;
  }

  .offre-hero__cta-row {
    flex-direction: row;
    width: auto;
    max-width: none;
  }

  .offre-section {
    padding: 80px 48px;
  }

  .offre-section__title {
    font-size: 36px;
  }

  .offre-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .offre-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }

  .offre-trust__items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

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

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

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


  .offre-ia-subtitle {
    font-size: 36px;
  }

  .offre-ia-cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px 64px;
  }

  .offre-ia-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .offre-ia-header__title {
    font-size: 36px;
  }

  .offre-ia-step__title {
    font-size: 28px;
  }

  .offre-cta {
    padding: 100px 48px;
  }

  .offre-cta__title {
    font-size: 36px;
  }

  .offre-cta__row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .offre-hero {
    padding: 80px 120px 80px;
  }

  .offre-hero__title {
    font-size: 72px;
  }

  .offre-hero__sub {
    font-size: 18px;
  }

  .offre-section {
    padding: 100px 120px;
  }

  .offre-section__title {
    font-size: 40px;
  }

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

  .offre-tabs {
    flex-direction: row;
    gap: 32px;
  }

  .offre-tabs__nav {
    width: 340px;
    flex-shrink: 0;
    flex-direction: column;
    overflow-x: visible;
  }

  /* Restore full trigger layout on desktop */
  .offre-tabs__trigger {
    border-radius: 12px;
    padding: 16px 20px;
    gap: 16px;
    white-space: normal;
    flex-shrink: 1;
  }
  .offre-tabs__trigger svg { display: block; }
  .offre-tabs__trigger span { display: block; }
  .offre-tabs__trigger strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
  }
  .offre-tabs__trigger div { display: block; }

  .offre-tabs__panel {
    flex: 1;
  }

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

  .offre-grid--3 .offre-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .offre-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .offre-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .offre-ia-subtitle {
    font-size: 40px;
  }

  .offre-ia-split {
    flex-direction: row;
    gap: 80px;
  }

  .offre-ia-split__nav {
    width: 500px;
    flex-shrink: 0;
  }

  .offre-ia-split__content {
    flex: 1;
    padding-top: 40px;
  }

  .offre-ia-split__title {
    font-size: 40px;
  }

  .offre-ia-header__title {
    font-size: 40px;
  }

  .offre-ia-cta-box h3 {
    font-size: 36px;
  }

  .offre-ecosystem {
    gap: 24px;
    padding: 40px 120px;
  }

  .offre-ecosystem__label {
    font-size: 12px;
  }

  .offre-ecosystem__row {
    gap: 32px;
    font-size: 14px;
  }

  .offre-trust__logos {
    gap: 64px;
  }

  .offre-trust {
    padding: 60px 120px;
  }

  .offre-cta {
    padding: 120px 120px;
  }

  .offre-cta__title {
    font-size: 40px;
  }

  .offre-divider {
    padding: 0 120px;
  }

  .offre-steps {
    flex-direction: row;
    gap: 40px;
  }

  .offre-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
}

/* ═══ ANIMATIONS & DEPTH ENHANCEMENTS ═══ */

/* ── Keyframes ── */
@keyframes offre-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes offre-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes offre-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 150, 90, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(184, 150, 90, 0); }
}

@keyframes offre-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentle-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes offre-tag-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes offre-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Hero glow halo ── */
.offre-hero {
  position: relative;
  overflow: hidden;
}


/* ── Badge pulsant ── */
.offre-hero__badge {
  animation: offre-badge-pulse 2.5s ease-in-out infinite;
}

.offre-hero__badge-dot {
  animation: offre-glow-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(184, 150, 90, 0.6);
}

/* ── Glassmorphism cards ── */
.offre-card {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

/* ── Persona cards with role icon ── */
.offre-card__role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(184, 150, 90, 0.08);
  border: 1px solid rgba(184, 150, 90, 0.15);
  color: var(--accent-text);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.offre-card:hover .offre-card__role-icon {
  background: rgba(184, 150, 90, 0.15);
  border-color: rgba(184, 150, 90, 0.35);
  box-shadow: 0 0 20px rgba(184, 150, 90, 0.08);
}

/* Persona card top accent bar on hover */
.offre-card {
  position: relative;
  overflow: hidden;
}

.offre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offre-card:hover::before {
  opacity: 1;
}

.offre-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(184, 150, 90, 0.25);
}

/* Dark card styles removed — all cards use light mode now */

.offre-card--accent {
  transition: box-shadow 0.25s ease;
}

.offre-card--accent:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 12px rgba(184, 150, 90, 0.08);
}

/* ── Icon glow on card hover ── */
.offre-card:hover .offre-card__icon {
  background: rgba(184, 150, 90, 0.2);
  box-shadow: 0 0 16px rgba(184, 150, 90, 0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* ── Card number accent ── */
.offre-card__num {
  transition: color 0.25s ease;
}

.offre-card:hover .offre-card__num {
  color: var(--brume);
}

/* ── Tags cloud ── */
.offre-tag {
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: default;
}

.offre-tag:hover {
  border-color: rgba(184, 150, 90, 0.4);
  background: rgba(184, 150, 90, 0.06);
}

/* ── Exemple cards glow ── */
.offre-exemple-card__screen {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.offre-exemple-card:hover .offre-exemple-card__screen {
  border-color: rgba(184, 150, 90, 0.3);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 0 24px rgba(184, 150, 90, 0.08);
}

/* ── Timeline glow line ── */
.offre-timeline::before {
  background: linear-gradient(to bottom, var(--brume), rgba(184, 150, 90, 0.15));
  box-shadow: 0 0 8px rgba(184, 150, 90, 0.2);
}

.offre-timeline__num {
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.offre-timeline__step:hover .offre-timeline__num {
  box-shadow: 0 0 0 10px var(--noir-bg), 0 0 20px rgba(184, 150, 90, 0.2);
}

.offre-timeline__content {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.offre-timeline__step:hover .offre-timeline__content {
  transform: translateX(4px);
}

/* ── Section separator glow ── */
.offre-section--dark {
  position: relative;
}

.offre-section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 90, 0.3), transparent);
}

/* ── CTA button glow ── */
.offre-section__cta-center {
  text-align: center;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .offre-section__cta-center {
    margin-top: 48px;
  }
}

.offre-hero__cta-row .btn-primary,
.offre-section__cta-center .btn-primary {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offre-hero__cta-row .btn-primary:hover,
.offre-section__cta-center .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.2), 0 0 16px rgba(184, 150, 90, 0.1);
}

/* ── Ecosystem bar shimmer ── */
.offre-ecosystem__row span:not(.offre-ecosystem__dot) {
  transition: color 0.2s ease;
}

.offre-ecosystem__row span:not(.offre-ecosystem__dot):hover {
  color: var(--brume);
}


/* ── Scroll-triggered animations — gentle fade only ── */
.offre-section__header,
.offre-card,
.offre-card--dark,
.offre-card--accent,
.offre-exemple-card,
.offre-timeline__step {
  opacity: 0;
}

.offre-section__header.revealed,
.offre-card.revealed,
.offre-card--dark.revealed,
.offre-card--accent.revealed,
.offre-exemple-card.revealed,
.offre-timeline__step.revealed {
  animation: gentle-fade 0.6s ease-out forwards;
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .offre-hero__badge,
  .offre-hero__badge-dot {
    animation: none;
  }

  .offre-section__header,
  .offre-card,
  .offre-card--dark,
  .offre-card--accent,
  .offre-exemple-card,
  .offre-timeline__step {
    opacity: 1;
    animation: none;
  }

  .offre-timeline__step:hover .offre-timeline__content {
    transform: none;
  }

  .offre-hero__cta-row .btn-primary:hover,
  .offre-section__cta-center .btn-primary:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   PAGE: PRÉSENCE DIGITALE — pd-* components
   ═══════════════════════════════════════════════════════════════════ */

/* (old .page-presence-digitale overrides removed — replaced by pd-* Redesign block below) */

/* DEAD_BLOCK_START */
.page-presence-digitale .offre-hero__badge-dot {
  background: var(--pd-accent-light);
  box-shadow: 0 0 6px rgba(138, 180, 214, 0.6);
}

.offre-hero--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(107, 125, 142, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(107, 125, 142, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.page-presence-digitale .offre-hero__title {
  color: #ffffff;
}

.page-presence-digitale .offre-hero__title em {
  color: var(--pd-accent-light);
}

.page-presence-digitale .offre-hero__sub {
  color: #a1a1aa;
}

.page-presence-digitale .offre-hero__cta-row {
  flex-direction: row;
  max-width: none;
  justify-content: center;
}

.page-presence-digitale .offre-hero__cta-row .btn-primary {
  background: var(--pd-accent-light);
  color: var(--pd-dark-bg);
  border-color: var(--pd-accent-light);
}

.page-presence-digitale .offre-hero__cta-row .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(138, 180, 214, 0.25), 0 0 16px rgba(138, 180, 214, 0.15);
}

.page-presence-digitale .offre-hero__cta-row .btn-outline {
  color: #a1a1aa;
  border-color: #3f3f46;
}

.page-presence-digitale .offre-hero__cta-row .btn-outline:hover {
  color: #ffffff;
  border-color: #71717a;
}

@keyframes offre-badge-pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(138, 180, 214, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(138, 180, 214, 0); }
}

/* ── Section tag/title blue overrides ── */
.page-presence-digitale .offre-section__tag {
  color: var(--pd-accent-light);
}

.page-presence-digitale .offre-section__title em {
  color: var(--pd-accent-light);
}

.page-presence-digitale .offre-card__icon {
  background: rgba(74, 122, 154, 0.08);
  color: var(--pd-accent);
}

.page-presence-digitale .offre-card:hover .offre-card__icon {
  background: rgba(74, 122, 154, 0.2);
  box-shadow: 0 0 16px rgba(74, 122, 154, 0.15);
}

.page-presence-digitale .offre-card::before {
  background: linear-gradient(90deg, transparent, var(--pd-accent-light), transparent);
}

.page-presence-digitale .offre-card:hover {
  border-color: rgba(138, 180, 214, 0.25);
}

/* ── FAQ hover override ── */
.page-presence-digitale .faq-item:hover {
  border-color: rgba(74, 122, 154, 0.3);
}

/* ── Social proof bar ── */
.offre-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.offre-proof__item {
  font-family: var(--font-body);
  font-size: 14px;
  color: #52525b;
}

.offre-proof__sep {
  font-size: 14px;
  color: #3f3f46;
}

/* ── Problème dark section ── */
.offre-section--pd-dark {
  background: var(--pd-dark-bg);
  border-top: 1px solid var(--pd-dark-border);
}

.offre-section--pd-dark .offre-section__tag {
  color: var(--pd-accent-light);
}

.offre-section--pd-dark .offre-section__title {
  color: #ffffff;
  font-size: 32px;
}

.offre-section--pd-dark .offre-section__title em {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #ffffff;
}

/* ── Problème cards (dark) ── */
.offre-pd-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: var(--pd-dark-card);
  border: 1px solid var(--pd-dark-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.offre-pd-card:hover {
  border-color: rgba(138, 180, 214, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.offre-pd-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--pd-accent-light);
}

.offre-pd-card__title-bold {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #ffffff;
}

.offre-pd-card__title-italic {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}

.offre-pd-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #71717a;
}

.offre-pd-card__stat {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
}

.offre-pd-card__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--pd-accent-light);
  line-height: 1;
}

.offre-pd-card__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: #71717a;
  padding-bottom: 4px;
}

/* ── Trajectoire steps ── */
.offre-traj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.offre-traj-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  text-align: center;
}

.offre-traj-step + .offre-traj-step {
  border-left: none;
  border-top: 1px solid var(--gris-200);
  padding-top: 24px;
}

.offre-traj-step__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--pd-accent);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pd-accent);
}

.offre-traj-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.offre-traj-step__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: #71717a;
}

.offre-traj-step__badges {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.offre-traj-step__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: #52525b;
  background: #f4f4f5;
  border-radius: 12px;
  padding: 4px 10px;
}

/* ── Before/After cards ── */
.offre-ba-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(138, 180, 214, 0.19);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.offre-ba-card:hover {
  border-color: rgba(138, 180, 214, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.offre-ba-card__before,
.offre-ba-card__after {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.offre-ba-card__before {
  background: #ddebf5;
}

.offre-ba-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.offre-ba-card__before .offre-ba-card__tag {
  color: #a1a1aa;
}

.offre-ba-card__after .offre-ba-card__tag {
  color: #6a9abc;
}

.offre-ba-card__before .offre-ba-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #3f3f46;
}

.offre-ba-card__after .offre-ba-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
}

/* ── Carousel dots (decorative) ── */
.offre-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}

.offre-carousel-dots__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(138, 180, 214, 0.19);
  color: var(--pd-accent);
  background: none;
  cursor: default;
}

.offre-carousel-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(138, 180, 214, 0.19);
}

.offre-carousel-dots__dot--active {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--pd-accent-light);
}

/* ── GEO banner ── */
.offre-geo-banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid var(--gris-200);
  width: 100%;
}

.offre-geo-banner__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--pd-accent-dark);
}

.offre-geo-banner__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.offre-geo-banner__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: #71717a;
}

.offre-geo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--pd-accent-light);
  color: #000000;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.offre-geo-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 180, 214, 0.25);
}

/* ── CTA final overrides ── */
.page-presence-digitale .offre-cta {
  background: var(--pd-cta-bg);
}

.page-presence-digitale .offre-cta__tag {
  color: var(--pd-accent-dark);
}

.page-presence-digitale .offre-cta .btn-primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 0 20px rgba(126, 200, 227, 0.38), 0 0 8px rgba(126, 200, 227, 0.56);
}

.page-presence-digitale .offre-cta .btn-primary:hover {
  box-shadow: 0 0 30px rgba(126, 200, 227, 0.5), 0 0 12px rgba(126, 200, 227, 0.7);
  transform: translateY(-2px);
}

/* ── Scroll reveal for PD-specific elements ── */
.offre-pd-card,
.offre-traj-step,
.offre-ba-card,
.offre-geo-banner {
  opacity: 0;
}

.offre-pd-card.revealed,
.offre-traj-step.revealed,
.offre-ba-card.revealed,
.offre-geo-banner.revealed {
  animation: gentle-fade 0.6s ease-out forwards;
}

/* ── Responsive: tablet (768px) ── */
@media (min-width: 768px) {
  .page-presence-digitale .offre-hero {
    padding: 120px 80px 80px;
  }

  .offre-section--pd-dark {
    padding: 80px 48px;
  }

  .offre-section--pd-dark .offre-section__title {
    font-size: 48px;
  }

  .offre-pd-card__title-bold {
    font-size: 26px;
  }

  .offre-pd-card__title-italic {
    font-size: 24px;
  }

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

  .offre-traj-step + .offre-traj-step {
    border-top: none;
    padding-top: 0;
  }

  .offre-traj-step:nth-child(n+2) {
    border-left: 1px solid var(--gris-200);
  }

  .offre-traj-step:nth-child(3) {
    border-left: none;
  }

  .offre-geo-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
  }

  .offre-geo-banner__btn {
    align-self: center;
    white-space: nowrap;
  }

}

/* ── Responsive: desktop (1024px) ── */
@media (min-width: 1024px) {
  .page-presence-digitale .offre-hero {
    padding: 120px 200px 80px;
  }

  .offre-section--pd-dark {
    padding: 96px 120px;
  }

  .offre-section--pd-dark .offre-section__title {
    font-size: 56px;
  }

  .offre-section--pd-dark .offre-section__title em {
    font-size: 52px;
  }

  .offre-pd-card__title-bold {
    font-size: 28px;
  }

  .offre-pd-card__title-italic {
    font-size: 26px;
  }

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

  .offre-traj-step:nth-child(3) {
    border-left: 1px solid var(--gris-200);
  }

}

/* ── Reduced motion for PD elements ── */
@media (prefers-reduced-motion: reduce) {
  .page-presence-digitale .offre-hero__badge {
    animation: none;
  }

  .offre-pd-card,
  .offre-traj-step,
  .offre-ba-card,
  .offre-geo-banner {
    opacity: 1;
    animation: none;
  }

  .offre-geo-banner__btn:hover,
  .page-presence-digitale .offre-cta .btn-primary:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   PRÉSENCE DIGITALE — Redesign (homepage design system)
   ═══════════════════════════════════════════════════════════ */

/* ── PD PROBLEMS — Section "Pourquoi agir" ── */

.pd-problems {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px var(--section-px) 72px;
  background: var(--noir-bg);
}

.pd-problems__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pd-problems__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--brume);
}

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

.pd-problems__title-l1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.pd-problems__title-l2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
}

.pd-problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.pd-problems__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 28px 24px;
  background: var(--noir-card);
  border-radius: 14px;
  border: 1px solid var(--gris-200);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s;
}

.pd-problems__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.08);
  border-color: rgba(184, 150, 90, 0.25);
}

.pd-problems__card-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pd-problems__card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-text);
  margin-bottom: 4px;
}

.pd-problems__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--noir);
  margin: 0;
  line-height: 1.3;
}

.pd-problems__card-italic {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
  margin: 0;
}

.pd-problems__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gris-400);
  line-height: 1.6;
  margin: 0;
}

.pd-problems__card-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gris-200);
}

.pd-problems__card-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.pd-problems__card-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gris-400);
}

/* ── PD EXPERTISES — Section "Nos expertises" ── */

.pd-expertises {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-py) var(--section-px);
  background: var(--noir);
  color: #ffffff;
  overflow: hidden;
}

.pd-expertises__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin-bottom: var(--section-gap);
}

.pd-expertises__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

.pd-expertises__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.pd-expertises__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.pd-expertises__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-on-dark);
  max-width: 720px;
}

.pd-expertises__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

.pd-expertises__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-expertises__visual {
  display: none;
}

.pd-expertises__astro {
  width: 100%;
  height: auto;
  opacity: 0.3;
}

.pd-expertises__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.pd-expertises__item:hover {
  border-color: rgba(184, 150, 90, 0.3);
  background: rgba(184, 150, 90, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(184, 150, 90, 0.1);
}

.pd-expertises__item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 90, 0.1);
  border-radius: 12px;
  color: var(--accent);
  transition: background 0.3s, box-shadow 0.3s;
}

.pd-expertises__item:hover .pd-expertises__item-icon {
  background: rgba(184, 150, 90, 0.18);
  box-shadow: 0 0 20px rgba(184, 150, 90, 0.15);
}

.pd-expertises__item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-expertises__item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.pd-expertises__item-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-on-dark);
  margin: 0;
}

.pd-expertises__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pd-expertises__tag-pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 5px 14px;
  letter-spacing: 0.3px;
  transition: border-color 0.3s, color 0.3s;
}

.pd-expertises__item:hover .pd-expertises__tag-pill {
  border-color: rgba(184, 150, 90, 0.2);
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
  .pd-expertises__title {
    font-size: 36px;
  }

  .pd-expertises__item-title {
    font-size: 22px;
  }

}

@media (min-width: 1024px) {
  .pd-expertises__title {
    font-size: 40px;
  }

  .pd-expertises__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .pd-expertises__list {
    flex: 1;
  }

  .pd-expertises__visual {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 0 0 340px;
    overflow: visible;
  }

  .pd-expertises__astro {
    width: 450px;
    max-width: none;
    animation: pd-astro-float 6s ease-in-out infinite;
  }

  @keyframes pd-astro-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
  }
}

/* ── PD APPROACH — Section "Notre approche" ── */

.pd-approach {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px var(--section-px) 72px;
  background: var(--section-bg-alt);
}

.pd-approach__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pd-approach__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--brume);
}

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

.pd-approach__title-l1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.pd-approach__title-l2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
}

.pd-approach__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gris-400);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.pd-approach__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.pd-approach__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--noir-card);
  border-radius: 14px;
  border: 1px solid var(--gris-200);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s;
}

.pd-approach__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.08);
  border-color: rgba(184, 150, 90, 0.25);
}

.pd-approach__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-bg);
  color: var(--accent);
  flex-shrink: 0;
}

.pd-approach__card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--noir);
  margin: 0;
}

.pd-approach__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gris-400);
  line-height: 1.6;
  margin: 0;
}

/* ── PD CASES — Avant / Après ── */

.pd-cases {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px var(--section-px) 72px;
  background: var(--section-bg-alt);
}

.pd-cases__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pd-cases__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--brume);
}

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

.pd-cases__title-l1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
}

.pd-cases__title-l2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
}

.pd-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.pd-cases__card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid var(--gris-200);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}

.pd-cases__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pd-cases__before {
  padding: 20px 24px;
  background: var(--gris-50);
}

.pd-cases__after {
  padding: 20px 24px;
  background: var(--noir-card);
}

.pd-cases__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gris-400);
  margin-bottom: 6px;
}

.pd-cases__label--after {
  color: var(--accent-text);
}

.pd-cases__before p,
.pd-cases__after p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--noir);
  line-height: 1.5;
  margin: 0;
}

.pd-cases__before p {
  color: var(--gris-400);
  text-decoration: line-through;
  text-decoration-color: rgba(198, 40, 40, 0.3);
}

.pd-cases__after p {
  font-weight: 500;
}

/* ── PD SEO — Stratégie de visibilité ── */

.pd-seo {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px var(--section-px) 72px;
  background: var(--noir-bg);
}

.pd-seo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pd-seo__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--brume);
}

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

.pd-seo__title-l1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.pd-seo__title-l2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
}

.pd-seo__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gris-400);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.pd-seo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.pd-seo__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--noir-card);
  border-radius: 14px;
  border: 1px solid var(--gris-200);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s;
}

.pd-seo__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.08);
  border-color: rgba(184, 150, 90, 0.25);
}

.pd-seo__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-bg);
  color: var(--accent);
  flex-shrink: 0;
}

.pd-seo__card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--noir);
  margin: 0 0 4px;
}

.pd-seo__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gris-400);
  line-height: 1.6;
  margin: 0;
}

.pd-seo__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ── PD : Timeline override (visible on mobile, 4 cols on desktop) ── */

.mt--pd {
  display: flex;
}

.mt--pd .mt__overview {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.mt--pd .mt__overview::before {
  display: none;
}

@media (min-width: 768px) {
  .mt--pd .mt__overview {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .mt--pd .mt__overview::before {
    display: block;
  }
}

@media (min-width: 1024px) {
  .mt--pd .mt__overview {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

/* ── PD Responsive — Tablet ── */

@media (min-width: 768px) {
  .pd-problems__title-l1,
  .pd-approach__title-l1,
  .pd-cases__title-l1,
  .pd-seo__title-l1 {
    font-size: 40px;
  }

  .pd-problems__title-l2,
  .pd-approach__title-l2,
  .pd-cases__title-l2,
  .pd-seo__title-l2 {
    font-size: 36px;
  }

  .pd-approach__sub,
  .pd-seo__sub {
    font-size: 17px;
  }

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

  .pd-problems__grid > :last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .pd-approach__grid,
  .pd-cases__grid,
  .pd-seo__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-problems,
  .pd-approach,
  .pd-cases,
  .pd-seo {
    padding: 80px var(--section-px) 88px;
  }
}

/* ── PD Responsive — Desktop ── */

@media (min-width: 1024px) {
  .pd-problems__title-l1,
  .pd-approach__title-l1,
  .pd-cases__title-l1,
  .pd-seo__title-l1 {
    font-size: 44px;
  }

  .pd-problems__title-l2,
  .pd-approach__title-l2,
  .pd-cases__title-l2,
  .pd-seo__title-l2 {
    font-size: 40px;
  }

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

  .pd-problems__grid > :last-child {
    grid-column: auto;
    max-width: none;
  }

  .pd-approach__grid,
  .pd-cases__grid,
  .pd-seo__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-problems__card-title {
    font-size: 20px;
  }

  .pd-problems__card-desc,
  .pd-approach__card-desc,
  .pd-seo__card-desc {
    font-size: 15px;
  }

  .pd-problems,
  .pd-approach,
  .pd-cases,
  .pd-seo {
    padding: 96px var(--section-px) 104px;
  }
}

/* ── PD Reduced motion ── */

@media (prefers-reduced-motion: reduce) {
  .pd-problems__card,
  .pd-approach__card,
  .pd-cases__card,
  .pd-seo__card {
    transition: none;
  }

  .pd-problems__card:hover,
  .pd-approach__card:hover,
  .pd-cases__card:hover,
  .pd-seo__card:hover {
    transform: none;
  }
}

/* ═══ PD-CAROUSEL — Réalisations sites ═══ */
.pd-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: var(--section-py) var(--section-px);
  background: var(--noir-bg);
}

.pd-carousel__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.pd-carousel__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-text);
}

.pd-carousel__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.pd-carousel__title-l1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.pd-carousel__title-l2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-text);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.pd-carousel__track-wrap {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.pd-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.pd-carousel__track::-webkit-scrollbar {
  display: none;
}

.pd-carousel__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--blanc);
  border: 1px solid var(--gris-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.pd-carousel__card:hover {
  border-color: rgba(184, 150, 90, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pd-carousel__card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.pd-carousel__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-carousel__card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-text);
  text-transform: uppercase;
}

.pd-carousel__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--noir);
  margin: 0;
}

.pd-carousel__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gris-400);
  margin: 0;
}

.pd-carousel__controls {
  display: flex;
  gap: 12px;
}

.pd-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gris-200);
  background: var(--blanc);
  color: var(--noir);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.pd-carousel__btn:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
}

.pd-carousel__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-text);
  text-decoration: none;
  transition: color 0.2s;
}

.pd-carousel__link:hover {
  color: var(--accent-dark);
}

/* ── Tablet ── */
@media (min-width: 768px) {
  .pd-carousel {
    gap: 40px;
  }

  .pd-carousel__title-l1 {
    font-size: 40px;
  }

  .pd-carousel__title-l2 {
    font-size: 40px;
  }

  .pd-carousel__card {
    flex: 0 0 360px;
  }
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  .pd-carousel__title-l1 {
    font-size: 44px;
  }

  .pd-carousel__title-l2 {
    font-size: 44px;
  }

  .pd-carousel__card {
    flex: 0 0 380px;
  }

  .pd-carousel__card-img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-carousel__track {
    scroll-behavior: auto;
  }
}

/* ═══════════════════════════════════
   PRESENCE DIGITALE — RESPONSIVE
   ═══════════════════════════════════ */

/* ── Tablet (768px) ── */
@media (min-width: 768px) {
  .pd-problems__title-l1 {
    font-size: 36px;
  }
  .pd-problems__title-l2 {
    font-size: 34px;
  }
  .pd-problems__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-expertises__title {
    font-size: 36px;
  }
  .pd-expertises__item {
    padding: 32px;
  }
  .pd-expertises__item-title {
    font-size: 22px;
  }

  .pd-approach__title-l1 {
    font-size: 36px;
  }
  .pd-approach__title-l2 {
    font-size: 34px;
  }
  .pd-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-cases__title-l1 {
    font-size: 36px;
  }
  .pd-cases__title-l2 {
    font-size: 34px;
  }
  .pd-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-seo__title-l1 {
    font-size: 36px;
  }
  .pd-seo__title-l2 {
    font-size: 34px;
  }
  .pd-seo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Desktop (1024px) ── */
@media (min-width: 1024px) {
  .pd-problems__title-l1 {
    font-size: 40px;
  }
  .pd-problems__title-l2 {
    font-size: 38px;
  }

  .pd-expertises__title {
    font-size: 40px;
  }
  .pd-expertises__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .pd-expertises__list {
    flex: 1;
  }
  .pd-expertises__visual {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 0 0 500px;
    margin-left: -200px;
    overflow: visible;
  }
  .pd-expertises__astro {
    width: 450px;
    max-width: none;
    animation: pd-astro-float 6s ease-in-out infinite;
  }

  .pd-approach__title-l1 {
    font-size: 40px;
  }
  .pd-approach__title-l2 {
    font-size: 38px;
  }
  .pd-approach__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-cases__title-l1 {
    font-size: 40px;
  }
  .pd-cases__title-l2 {
    font-size: 38px;
  }
  .pd-cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-seo__title-l1 {
    font-size: 40px;
  }
  .pd-seo__title-l2 {
    font-size: 38px;
  }
  .pd-seo__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
