.trial-offer-page {
  --trial-ink: #171619;
  --trial-red: #b3132d;
  --trial-red-dark: #8f0d22;
  --trial-red-focus: rgba(219, 70, 93, 0.35);
  --trial-white: #f8f4ef;
  --trial-muted-light: rgba(248, 244, 239, 0.68);
  --trial-line-dark: rgba(23, 22, 25, 0.18);
  --trial-content-width: 1180px;
  --trial-page-gutter: 2rem;
  --trial-nav-height: 60px;

  overflow: hidden;
  color: var(--trial-ink);
  background: #111013;
}

.trial-offer-page button {
  font: inherit;
}

.trial-hero {
  position: relative;
  height: calc(100svh - var(--trial-nav-height));
  min-height: calc(100svh - var(--trial-nav-height));
  overflow: hidden;
  color: var(--trial-ink);
  background-color: #aeb5c2;
  background-image: url("../../images/pages/new-customer-free-trial/hero-new-customer-free-trial.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.trial-hero-kicker {
  position: absolute;
  top: 8.5%;
  left: 50%;
  width: min(47.5rem, calc(100% - 4rem));
  margin: 0;
  color: #8f263c;
  font-size: clamp(1.4375rem, 1.65vw, 1.875rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.trial-hero-title {
  position: absolute;
  top: 34%;
  margin: 0;
  font-size: clamp(5.125rem, 8vw, 8.625rem);
  font-weight: 800;
  line-height: 0.9;
  white-space: nowrap;
}

.trial-hero-title--first {
  right: calc(50% + clamp(11.875rem, 13vw, 18.75rem));
  color: var(--trial-ink);
}

.trial-hero-title--free {
  left: calc(50% + clamp(11.875rem, 13vw, 18.75rem));
  color: var(--trial-red);
}

.trial-hero-facts {
  display: flex;
  position: absolute;
  top: 17%;
  left: 50%;
  margin: 0;
  padding: 0 0 0.875rem;
  border-bottom: 1px solid rgba(23, 22, 25, 0.24);
  align-items: center;
  justify-content: center;
  color: rgba(23, 22, 25, 0.78);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.trial-hero-facts li {
  padding: 0 clamp(1.0625rem, 1.8vw, 1.75rem);
}

.trial-hero-facts li:first-child {
  padding-left: 0;
}

.trial-hero-facts li:last-child {
  padding-right: 0;
}

.trial-hero-facts li + li {
  border-left: 1px solid rgba(23, 22, 25, 0.18);
}

.trial-claim-button {
  display: inline-flex;
  min-height: 3.875rem;
  padding: 0.875rem 2.125rem;
  border: 1px solid var(--trial-red);
  border-radius: 0.25rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--trial-red);
  box-shadow: 0 0.875rem 1.875rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trial-claim-button:hover {
  background: var(--trial-red-dark);
  box-shadow: 0 1.125rem 2.25rem rgba(0, 0, 0, 0.26);
  transform: translateY(-0.125rem);
}

.trial-claim-button:focus-visible {
  outline: 3px solid var(--trial-red-focus);
  outline-offset: 0.25rem;
}

.trial-hero-claim {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  width: min(360px, calc(100% - 2.25rem));
  transform: translateX(-50%);
}

.trial-hero-claim:hover {
  transform: translate(-50%, -0.125rem);
}

.trial-section {
  position: relative;
  overflow: hidden;
}

.trial-section-shell {
  width: min(var(--trial-content-width), 100%);
  margin: 0 auto;
}

.trial-section-kicker {
  margin: 0 0 1.125rem;
  color: var(--trial-red);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.trial-sincerity {
  padding: clamp(5.25rem, 7vw, 6.75rem) var(--trial-page-gutter) clamp(4.5rem, 6vw, 5.75rem);
  background: #f4f5f7;
}

.trial-sincerity-heading {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(3rem, 4vw, 4.25rem);
  font-weight: 800;
  line-height: 1.16;
  text-align: center;
}

.trial-sincerity-copy {
  display: flex;
  position: relative;
  max-width: 940px;
  margin: 2rem auto 0;
  padding-top: 1.75rem;
  flex-direction: column;
  gap: 0.4375rem;
  text-align: center;
}

.trial-sincerity-copy::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3rem;
  height: 0.125rem;
  background: var(--trial-red);
  content: "";
  transform: translateX(-50%);
}

.trial-sincerity-copy p {
  margin: 0;
  color: #555866;
  font-size: 1rem;
  line-height: 1.75;
}

.trial-offer-line {
  display: grid;
  margin: 2.875rem 0 0;
  padding: 1.5rem 0 0.25rem;
  border-top: 1px solid var(--trial-line-dark);
  align-items: center;
  counter-reset: offer-item;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--trial-ink);
  font-size: clamp(1.25rem, 1.65vw, 1.6875rem);
  font-weight: 600;
  text-align: center;
}

.trial-offer-line span {
  display: flex;
  min-width: 0;
  min-height: 5.25rem;
  padding: 0.25rem 1.5rem;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.trial-offer-line span::before {
  color: var(--trial-red);
  content: "0" counter(offer-item);
  counter-increment: offer-item;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.trial-offer-line span + span {
  border-left: 1px solid var(--trial-line-dark);
}

.trial-guide {
  padding: clamp(4.875rem, 6vw, 5.75rem) var(--trial-page-gutter) clamp(5.125rem, 7vw, 6.75rem);
  color: var(--trial-white);
  background: #111216;
}

.trial-guide-heading {
  text-align: center;
}

.trial-guide-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(3.125rem, 4.4vw, 4.375rem);
  font-weight: 800;
  line-height: 1.14;
}

.trial-guide-heading p {
  max-width: 640px;
  margin: 1.25rem auto 0;
  color: var(--trial-muted-light);
  font-size: 1rem;
  line-height: 1.7;
}

.trial-guide-action {
  display: flex;
  margin-top: 1.75rem;
  align-items: center;
  flex-direction: column;
  gap: 1.75rem;
}

.trial-eligibility-note {
  max-width: 860px;
  margin: 0;
  color: var(--trial-muted-light);
  font-size: 0.75rem;
  line-height: 1.75;
  text-align: center;
}

.trial-guide-claim {
  width: min(430px, 100%);
  min-height: 4.125rem;
}

@media (max-width: 1440px) and (min-width: 681px) {
  .trial-offer-page {
    --trial-page-gutter: clamp(1.75rem, 3vw, 2rem);
  }
}

@media (min-width: 681px) {
  .trial-sincerity-heading {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .trial-offer-page {
    --trial-page-gutter: 1.375rem;
    --trial-nav-height: 56px;
  }

  .trial-hero {
    height: calc(100svh - var(--trial-nav-height));
    min-height: calc(100svh - var(--trial-nav-height));
    background-position: center;
  }

  .trial-hero-kicker {
    top: 4%;
    width: calc(100% - 2.25rem);
    font-size: 0.75rem;
  }

  .trial-hero-title {
    top: 9.5%;
    font-size: clamp(3rem, 15vw, 4.125rem);
  }

  .trial-hero-title--first {
    right: 52%;
  }

  .trial-hero-title--free {
    left: 52%;
  }

  .trial-hero-facts {
    top: 18%;
    width: calc(100% - 2.25rem);
    padding: 0.5rem;
    border-top: 1px solid rgba(23, 22, 25, 0.14);
    border-bottom: 1px solid rgba(23, 22, 25, 0.2);
    background: rgba(247, 244, 240, 0.7);
    backdrop-filter: blur(6px);
    flex-wrap: wrap;
    color: rgba(23, 22, 25, 0.88);
    font-size: 0.6875rem;
  }

  .trial-hero-facts li {
    width: 50%;
    padding: 0.25rem;
    text-align: center;
  }

  .trial-hero-facts li + li {
    border-left: 0;
  }

  .trial-hero-claim {
    bottom: 5.25rem;
    min-height: 3.375rem;
    font-size: 1rem;
  }

  .trial-sincerity {
    padding-top: 5.25rem;
  }

  .trial-sincerity-heading {
    font-size: clamp(2.125rem, 9.2vw, 2.5rem);
    line-height: 1.16;
  }

  .trial-sincerity-copy {
    margin-top: 3rem;
    gap: 1.5rem;
  }

  .trial-offer-line {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trial-offer-line span {
    padding: 0.5rem 0.375rem;
    text-align: center;
  }

  .trial-offer-line span + span {
    border-left: 0;
  }

  .trial-offer-line span:nth-child(n + 3) {
    border-top: 1px solid var(--trial-line-dark);
  }

  .trial-guide-heading p {
    margin-top: 1.375rem;
  }

  .trial-guide-action {
    margin-top: 2.25rem;
    align-items: stretch;
  }

  .trial-guide-claim {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trial-claim-button {
    transition: none;
  }
}
