.lp-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(1400px 700px at 2% -8%, rgba(250, 90, 44, 0.22), transparent 58%),
    radial-gradient(1100px 600px at 98% -6%, rgba(57, 199, 138, 0.18), transparent 56%),
    linear-gradient(150deg, var(--fm-bg), var(--fm-bg-2));
}

.lp-hero .lp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.lp-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lp-hero .lp-kicker {
  margin-bottom: 20px;
}

.lp-hero-title {
  font-family: var(--fm-font-head);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.lp-hero-title span {
  display: block;
}

.lp-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--fm-ink-soft);
  margin-bottom: 36px;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .lp-hero .lp-container {
    grid-template-columns: 1fr;
  }

  .lp-hero-mockup {
    order: -1;
  }
}

@media (max-width: 640px) {
  .lp-hero {
    min-height: auto;
    padding-block: 40px 64px;
  }

  .lp-hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  /* Sur téléphone : texte + CTA en premier, mockup en dessous */
  .lp-hero-mockup {
    order: 0;
  }

  .lp-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .lp-hero-ctas .lp-btn {
    width: 100%;
    justify-content: center;
  }

  .lp-hero-sub {
    margin-bottom: 28px;
  }
}
