/* ============================================
   PCS XPRESS -- Hero Accueil (gradient + wave)
   ============================================ */

.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: 160px 0 180px;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Colonne gauche : texte */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__surtitle {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
}

.hero__title {
  font-size: 76px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.hero__title span {
  display: block;
}

.hero__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__price strong {
  font-size: 36px;
  letter-spacing: -0.02em;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

.hero__subtitle {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
}

.hero__trustpilot {
  margin-top: var(--space-xs);
}

.hero__trustpilot .badge-trustpilot {
  color: var(--color-white);
}

.hero__trustpilot .badge-trustpilot__stars {
  color: #00b67a;
}

/* Colonne droite : visuel */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__visual img {
  max-width: 500px;
  width: 100%;
  animation: heroFadeIn 0.8s ease-out both;
  animation-delay: 0.3s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Vague organique en bas du hero */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- HERO SIMPLE (pages internes) --- */
.hero-simple {
  padding: 140px 0 60px;
  background: var(--color-white);
  text-align: center;
}

.hero-simple__surtitle {
  font-size: 16px;
  font-weight: 500;
  color: #888;
  margin-bottom: var(--space-xs);
}

.hero-simple__title {
  font-size: 54px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.hero-simple__subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: var(--space-md);
}

.hero-simple__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

/* --- RESPONSIVE HERO --- */
@media (max-width: 992px) {
  .hero {
    padding: 120px 0 140px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__actions {
    align-items: center;
  }

  .hero__visual img {
    max-width: 350px;
  }

  .hero-simple__title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 120px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__surtitle {
    font-size: 16px;
  }

  .hero__price {
    font-size: 22px;
  }

  .hero__price strong {
    font-size: 28px;
  }

  .hero__visual img {
    max-width: 260px;
  }

  .hero-simple__title {
    font-size: 28px;
  }

  .hero-simple__price {
    font-size: 26px;
  }
}
