/**
 * French landing-page final call to action.
 */

.st-final-cta {
  --st-final-cta-navy: var(--st-color-primary-dark, #082b45);
  --st-final-cta-turquoise: var(--st-color-primary, #13a7b4);
  --st-final-cta-orange: var(--st-color-accent, #f58220);
  --st-final-cta-white: var(--st-color-surface, #fff);

  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: var(--st-space-16, 4rem) 1.25rem;
  color: var(--st-final-cta-white);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgb(19 167 180 / 24%) 0%,
      transparent 48%
    ),
    var(--st-final-cta-navy);
}

.st-final-cta__container {
  box-sizing: border-box;
  width: min(100%, 900px);
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.st-final-cta__eyebrow,
.st-final-cta__title,
.st-final-cta__text {
  margin-block-start: 0;
}

.st-final-cta__eyebrow {
  margin-block-end: var(--st-space-3, 0.75rem);
  color: var(--st-final-cta-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-final-cta__title {
  margin-block-end: var(--st-space-5, 1.25rem);
  color: var(--st-final-cta-white);
  font-family: var(--st-font-family-heading, inherit);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.08;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.st-final-cta__text {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-block-end: var(--st-space-8, 2rem);
  color: rgb(255 255 255 / 90%);
  font-family: var(--st-font-family-body, inherit);
  font-size: var(--st-font-size-lg, 1.125rem);
  line-height: 1.65;
}

.st-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--st-space-3, 0.75rem);
  align-items: stretch;
  width: min(100%, 440px);
  margin-inline: auto;
}

.st-final-cta__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,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.st-final-cta__button--primary {
  color: var(--st-final-cta-navy);
  background-color: var(--st-final-cta-orange);
}

.st-final-cta__button--secondary {
  border-color: var(--st-final-cta-white);
  color: var(--st-final-cta-white);
  background-color: transparent;
}

.st-final-cta__button:hover {
  box-shadow: 0 0.5rem 1.25rem rgb(0 0 0 / 22%);
  transform: translateY(-2px);
}

.st-final-cta__button--secondary:hover {
  color: var(--st-final-cta-navy);
  background-color: var(--st-final-cta-white);
}

.st-final-cta__button:focus-visible {
  outline: 3px solid var(--st-final-cta-orange);
  outline-offset: 3px;
}

.st-final-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--st-space-3, 0.75rem);
  margin: var(--st-space-8, 2rem) 0 0;
  padding: 0;
  color: var(--st-final-cta-white);
  font-family: var(--st-font-family-body, inherit);
  font-size: var(--st-font-size-sm, 0.875rem);
  line-height: 1.4;
  list-style: none;
}

.st-final-cta__trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: var(--st-radius-pill, 999px);
  background-color: rgb(255 255 255 / 10%);
}

@media (min-width: 768px) {
  .st-final-cta {
    padding: 5rem 2rem;
  }

  .st-final-cta__actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .st-final-cta__button {
    width: auto;
  }
}

@media (min-width: 1200px) {
  .st-final-cta {
    padding-block: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .st-final-cta__button {
    transition: none;
  }

  .st-final-cta__button:hover {
    transform: none;
  }
}
