
/* ==============================================================
   STAGE PRIME — PREMIER ÉCRAN VALIDÉ
   Reproduction fidèle du visuel fourni, sans ajout de contenu.
   ============================================================== */

.sp-exact-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #050505;
}

.sp-exact-hero__product {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: 63%;
  height: 100%;
  background:
    url("../assets/images/stage-prime-visuel-valide.webp")
    center right / cover no-repeat;
}

.sp-exact-hero__fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5,5,5,.99) 28%,
      rgba(5,5,5,.91) 38%,
      rgba(5,5,5,.58) 50%,
      rgba(5,5,5,.12) 66%,
      rgba(5,5,5,.03) 100%
    );
}

.sp-exact-hero__content {
  width: min(100% - 72px, 1440px);
  min-height: 460px;
  margin: 0 auto;
  padding: 55px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-exact-kicker {
  margin: 0 0 17px;
  color: #d89a55;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sp-exact-hero h1 {
  margin: 0;
  max-width: 560px;
  color: #f5f3ef;
  font-size: clamp(50px, 5.4vw, 78px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sp-exact-line {
  width: 48px;
  height: 2px;
  margin: 24px 0 24px;
  background: #d89a55;
}

.sp-exact-lead {
  margin: 0 0 22px;
  color: #f0ece6;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 300;
  line-height: 1.35;
}

.sp-exact-copy {
  margin: 0;
  color: #cfc7bd;
  font-size: 14px;
  line-height: 1.75;
}

.sp-exact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sp-exact-tags span {
  padding: 10px 16px;
  border: 1px solid rgba(216,154,85,.55);
  color: #dca363;
  background: rgba(0,0,0,.18);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sp-exact-features {
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #020202;
}

.sp-exact-features__grid {
  width: min(100%, 1536px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sp-exact-feature {
  min-height: 225px;
  padding: 27px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.16);
  text-align: center;
}

.sp-exact-feature:first-child {
  border-left: 1px solid rgba(255,255,255,.16);
}

.sp-exact-feature svg {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  fill: none;
  stroke: #dfa548;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sp-exact-feature h2 {
  margin: 0 0 12px;
  color: #f2efea;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.sp-exact-feature p {
  max-width: 190px;
  margin: 0;
  color: #b7afa6;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .sp-exact-hero {
    min-height: 620px;
  }

  .sp-exact-hero__product {
    top: 0;
    right: -8%;
    width: 108%;
    height: 58%;
    background-size: cover;
    background-position: center;
  }

  .sp-exact-hero__fade {
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,.05) 0%,
        rgba(5,5,5,.20) 38%,
        rgba(5,5,5,.82) 56%,
        #050505 70%,
        #050505 100%
      );
  }

  .sp-exact-hero__content {
    width: min(100% - 48px, 900px);
    min-height: 620px;
    padding: 260px 0 38px;
    justify-content: flex-end;
  }

  .sp-exact-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sp-exact-feature:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,.16);
  }

  .sp-exact-feature:nth-child(n+4) {
    border-top: 1px solid rgba(255,255,255,.16);
  }
}

@media (max-width: 680px) {
  .sp-exact-hero {
    min-height: 690px;
  }

  .sp-exact-hero__product {
    right: -30%;
    width: 150%;
    height: 48%;
    background-position: 66% center;
  }

  .sp-exact-hero__content {
    width: calc(100% - 36px);
    min-height: 690px;
    padding: 250px 0 34px;
  }

  .sp-exact-hero h1 {
    font-size: clamp(43px, 14vw, 62px);
    letter-spacing: .08em;
  }

  .sp-exact-copy br {
    display: none;
  }

  .sp-exact-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sp-exact-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-exact-feature {
    min-height: 225px;
    padding: 24px 14px 21px;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .sp-exact-feature:nth-child(-n+2) {
    border-top: 0;
  }

  .sp-exact-feature:nth-child(odd) {
    border-left: 1px solid rgba(255,255,255,.16);
  }

  .sp-exact-feature h2 {
    font-size: 12px;
  }

  .sp-exact-feature p {
    font-size: 11px;
  }
}
