/**
 * French landing-page Hero.
 */

.st-hero {
  --st-hero-navy: var(--st-color-primary-dark, #082b45);
  --st-hero-orange: var(--st-color-accent, #f58220);
  --st-hero-white: var(--st-color-surface, #fff);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: var(--st-hero-white);
  background-color: var(--st-hero-navy);
  background-image: var(--st-hero-background-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(3 20 34 / 90%) 0%, rgb(3 20 34 / 68%) 58%, rgb(3 20 34 / 24%) 100%);
  pointer-events: none;
}

.st-hero__container {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: min(100%, var(--st-container-xl, 1200px));
  min-width: 0;
  margin-inline: auto;
  padding: 4rem 1.25rem;
}

.st-hero__content {
  width: min(100%, 680px);
  min-width: 0;
}

.st-hero__eyebrow,
.st-hero__title,
.st-hero__intro {
  margin-block-start: 0;
}

.st-hero__eyebrow {
  margin-block-end: var(--st-space-3, 0.75rem);
  color: var(--st-hero-orange);
  font-family: var(--st-font-family-body, inherit);
  font-size: var(--st-font-size-sm, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.st-hero__title {
  max-width: 100%;
  margin-block-end: var(--st-space-4, 1rem);
  color: var(--st-hero-white);
  font-family: var(--st-font-family-heading, inherit);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.05;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.st-hero__intro {
  max-width: 680px;
  margin-block-end: var(--st-space-6, 1.5rem);
  color: var(--st-hero-white);
  font-family: var(--st-font-family-body, inherit);
  font-size: var(--st-font-size-lg, 1.125rem);
  line-height: 1.6;
}

.st-hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--st-space-3, 0.75rem);
  align-items: stretch;
}

.st-hero__button {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: var(--st-space-3, 0.75rem) var(--st-space-6, 1.5rem);
  border: 2px solid transparent;
  border-radius: var(--st-radius-pill, 999px);
  font-family: var(--st-font-family-body, inherit);
  font-size: var(--st-font-size-md, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.st-hero__button--primary {
  color: var(--st-hero-navy);
  background-color: var(--st-hero-orange);
}

.st-hero__button--secondary {
  color: var(--st-hero-white);
  background-color: transparent;
  border-color: var(--st-hero-white);
}

.st-hero__button:hover {
  transform: translateY(-2px);
}

.st-hero__button:focus-visible {
  outline: 3px solid var(--st-hero-orange);
  outline-offset: 3px;
}

.st-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--st-space-3, 0.75rem);
  margin-block: var(--st-space-8, 2rem) 0;
  padding: 0;
  color: var(--st-hero-white);
  font-family: var(--st-font-family-body, inherit);
  font-size: var(--st-font-size-md, 1rem);
  line-height: 1.4;
  list-style: none;
}

.st-hero__trust-item {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: var(--st-radius-pill, 999px);
  background-color: rgb(255 255 255 / 14%);
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .st-hero__container {
    padding: 5rem 2rem;
  }

  .st-hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .st-hero__button {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .st-hero {
    min-height: 455px;
  }

  .st-hero__intro {
    font-size: 1.1875rem;
  }
}

/* Compact legacy generated hero experiment. */
.st-hero__container {
  padding-block: 2.75rem;
}

@media (min-width: 768px) {
  .st-hero__container {
    padding-block: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-hero__button {
    transition: none;
  }

  .st-hero__button:hover {
    transform: none;
  }
}
