.nav-cta {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest);
  box-shadow: none;
  opacity: .82;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus {
  opacity: 1;
  color: var(--fern);
}

.request-sample-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(27, 79, 54, .18);
  opacity: 1;
}

.request-sample-cta:hover,
.request-sample-cta:focus {
  background: var(--fern);
  color: var(--white);
}

.section-head {
  align-items: start;
}

.section-head > p {
  padding-top: 31px;
}

.split {
  align-items: start;
}

.split > .product-detail__info {
  padding-top: 31px;
}

.about-hero-copy,
.about-hero-title {
  max-width: 1120px;
}

.about-hero-title {
  font-size: clamp(34px, 4vw, 50px);
  white-space: nowrap;
}

.hero-title-line {
  display: block;
}

.product-card .card-actions {
  justify-content: center;
}

.product-card .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-inline: auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(27, 79, 54, .16);
}

.product-card .text-link:hover,
.product-card .text-link:focus {
  background: var(--fern);
}

.product-detail__info > .btn-primary {
  display: flex;
  width: min(260px, 100%);
  min-height: 60px;
  margin: 56px auto 0;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 17px;
  box-shadow: 0 18px 36px rgba(27, 79, 54, .2);
}

.brochure-section {
  padding-top: 0;
}

.brochure-section-head {
  margin-bottom: 26px;
}

.brochure-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.brochure-showcase-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brochure-card {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.brochure-card-featured {
  max-width: 820px;
}

.brochure-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(27, 79, 54, .14);
  border-radius: 18px;
  background: var(--soft-sand);
  box-shadow: 0 18px 34px rgba(27, 79, 54, .14);
}

.brochure-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brochure-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.08;
}

.brochure-card p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.brochure-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(27, 79, 54, .16);
}

.brochure-download:hover,
.brochure-download:focus {
  background: var(--fern);
  color: var(--white);
}

.application-block {
  margin: 0 0 60px;
}

.application-intro {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.application-item {
  position: relative;
  min-height: 178px;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--fern);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.application-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Spectral", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest);
}

.application-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.section.soft .feature-grid + .section-head {
  margin-top: 76px;
}

.usage-guidance-head {
  margin-bottom: 18px;
}

.ticket-card > h2 {
  margin-bottom: 18px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .section-head > p,
  .split > .product-detail__info {
    padding-top: 0;
  }

  .about-hero-title {
    white-space: normal;
  }

  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brochure-showcase-two,
  .brochure-card {
    grid-template-columns: 1fr;
  }

  .brochure-card-featured {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .application-grid {
    grid-template-columns: 1fr;
  }

  .brochure-card {
    padding: 16px;
    border-radius: 20px;
  }
}
