:root {
  --red-900: #8f1d24;
  --red-700: #b72730;
  --red-500: #df3c48;
  --green-950: #063f34;
  --green-800: #0d5b4d;
  --green-600: #16806c;
  --mint: #77ddc0;
  --cream: #fff8df;
  --cream-2: #f3edcf;
  --ink: #1f2524;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 37, 36, .18);
  --radius: 8px;
  --container: 1180px;
}

body {
  color: var(--ink);
  background: var(--cream);
  font-family: Barlow, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-center {
  width: 50%;
  margin-inline: auto;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(143, 29, 36, .96);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 248, 223, .24);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand img {
  width: 162px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 248, 223, .15);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 223, .35);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(860px, 88vw, 1320px);
  color: var(--cream);
  background: var(--red-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    /* linear-gradient(90deg, rgba(143, 29, 36, .86), rgba(143, 29, 36, .26)), */
    url("../assets/images/hero-field.webp") center top / cover no-repeat;
}

.hero::after {
  display: none;
}

.hero-divider {
  --divider-height: clamp(52px, 6vw, 78px);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  height: var(--divider-height);
  margin-block: calc(var(--divider-height) / -2);
  pointer-events: none;
}

.hero-divider img {
  width: 70vw;
  max-height: var(--divider-height);
  height: auto;
  object-fit: contain;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
  gap: 30px;
  min-height: clamp(500px, 50vw, 700px);
  padding-block: clamp(42px, 4.5vw, 72px) 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: clamp(4.4rem, 12vw, 8.8rem);
  line-height: .82;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 8px 10px 0 rgba(0, 86, 73, .8);
}

h2 {
  color: inherit;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-lead {
  max-width: 620px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--cream);
  background: var(--red-500);
  box-shadow: inset 0 0 0 2px rgba(255, 248, 223, .28), var(--shadow);
}

.button-secondary {
  color: var(--cream);
  background: rgba(6, 63, 52, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 223, .32);
}

.hero-media img {
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .32));
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}

.section-risk {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background-color: var(--green-950);
  background-image:
    linear-gradient(90deg, rgba(6, 63, 52, .28), rgba(6, 63, 52, .78) 55%, rgba(6, 63, 52, .96)),
    url("../assets/images/worker-height.webp");
  background-position:
    center,
    calc(50% - 240px) bottom;
  background-size:
    auto,
    auto 78%;
  background-repeat: no-repeat;
}

.risk-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.risk-layout > h2 {
  max-width: 100%;
}

.risk-copy {
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(22px, 4vw, 42px);
  /* background: rgba(6, 63, 52, .32); */
  /* border-radius: var(--radius); */
  /* box-shadow: var(--shadow)?; */
  /* backdrop-filter: blur(2px); */
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.benefits-grid,
.specs-grid,
.catalog-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.benefits-grid img,
.specs-grid img,
.catalog-grid img {
  border-radius: var(--radius);
  /* box-shadow: var(--shadow); */
}

.section-intro,
.catalog-grid p,
.contact-copy p {
  font-size: 1.08rem;
}

.section-numbers .section-intro {
  font-size: clamp(1.18rem, 1.45vw, 1.34rem);
}

.risk-copy p {
  font-size: 1.2rem;
}

.center {
  text-align: center;
}

.section-video,
.section-numbers {
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 248, 223, .07), transparent 34%),
    linear-gradient(180deg, #a1252d 0%, #9d222a 46%, #951f27 100%);
  background-size: 100% 210%, 100% 210%;
}

.section-video {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(46px, 6vw, 82px);
  background-position: center top, center top;
}

.section-video::before,
.section-video::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;
  width: clamp(520px, 58vw, 760px);
  aspect-ratio: 1231 / 1263;
  background: url("../assets/images/elemento-01.svg") center / contain no-repeat;
  opacity: .5;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-video::before {
  left: max(-570px, -44vw);
  background-position: right center;
}

.section-video::after {
  right: max(-570px, -44vw);
  background-position: left center;
}

.section-numbers {
  padding-top: clamp(46px, 6vw, 82px);
  background-position: center bottom, center bottom;
}

.section-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, -4vw, 118px) clamp(88px, 9vw, 132px);
  color: var(--green-800);
  background:
    linear-gradient(135deg, rgba(143, 29, 36, .98) 0%, rgba(183, 39, 48, .96) 54%, rgba(223, 60, 72, .9) 100%),
    var(--red-900);
}

.section-cta h2{
  /* max-width: 40%; */
  text-align: center;
  color: var(--cream);
  font-size: clamp(1.8rem, 2vw, 4rem);
  /* line-height: 1.12; */
}

.section-cta h2 strong{
  /* color: var(--cream); */
  font-size: clamp(2rem, 4vw, 5rem);
}

.video-composition {
  position: relative;
  z-index: 1;
}

.section-video h2,
.section-numbers h2 {
  max-width: 960px;
  margin-inline: auto;
  text-shadow: 5px 7px 0 rgba(0, 86, 73, .8);
}

.video-card {
  position: relative;
  width: min(100%, 980px);
  margin: 34px auto 0;
  border: 3px solid rgba(255, 248, 223, .72);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  background: var(--green-950);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

@media (min-width: 1600px) {
  .hero {
    min-height: clamp(1180px, 72vw, 1480px);
  }

  .hero-grid {
    min-height: clamp(760px, 48vw, 980px);
  }
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card img {
  width: 100%;
}

.play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 248, 223, .84);
  transform: translate(-50%, -50%);
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 36px;
  border-block: 19px solid transparent;
  border-left: 29px solid var(--red-700);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(58px, 6vw, 76px);
}

.stat-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 360px;
  padding: 0;
  color: var(--red-900);
  background:
    linear-gradient(var(--cream-2), var(--cream-2)) padding-box;
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  overflow: visible;
  transform: translateY(34px) scale(.96);
  transition: opacity .55s ease, transform .55s ease;
}

.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: clamp(104px, 9vw, 132px);
  height: clamp(104px, 9vw, 132px);
  margin: -48px auto 18px;
  background: var(--green-800);
  border: 5px solid var(--white);
  border-radius: 20px;
}

.stat-icon img {
  width: 56%;
  height: 56%;
  object-fit: contain;
}

.stat-card h3 {
  align-self: center;
  padding: 0 22px 24px;
  color: var(--red-900);
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.05;
  font-weight: 700;
  text-align: center;
}

.stat-card p {
  margin-bottom: 0;
  font-weight: 800;
}

.stat-payout {
  display: grid;
  justify-items: center;
  align-content: center;
  align-self: end;
  min-height: 100px;
  padding: 10px 16px 18px;
  color: var(--cream-2);
  background:
    linear-gradient(180deg, #791319 0 36px, transparent 36px),
    var(--red-500);
  border-radius: 18px;
  text-align: center;
  text-transform: uppercase;
}

.stat-payout span {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1;
  transform: translateY(-7px);
}

.stat-payout strong {
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 1;
}

.stat-payout-text {
  grid-template-rows: 36px 1fr;
  align-content: stretch;
  padding-top: 0;
}

.stat-payout-text span {
  align-self: center;
  transform: none;
}

.stat-payout-text strong {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
  max-width: 100%;
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.stat-card.is-counted .stat-payout-text strong {
  opacity: 1;
  transform: translateY(0);
}

.section-specs {
  background: var(--cream);
}

.section-specs {
  padding-block: clamp(44px, 6vw, 86px);
}

.section-specs h2 {
  color: var(--green-800);
}

.section-benefits {
  position: relative;
  overflow: hidden;
  margin-top: clamp(-76px, -5vw, -46px);
  padding-top: clamp(112px, 12vw, 172px);
  color: var(--ink);
  background-color: var(--cream);
}

.section-benefits::before {
  content: "";
  position: absolute;
  right: min(max(0px, calc((100vw - var(--container)) * .25)), min(8.5vw, 152px));
  bottom: max(calc(clamp(64px, 8vw, 112px) - min(10vw, 150px)), calc(-1 * min(7.042vw, 135px)));
  left: 0;
  height: min(70.42vw, 1352px);
  background: url("../assets/images/section-benefts-background.webp") right bottom / min(85vw, 1520px) auto no-repeat;
  pointer-events: none;
}

.section-benefits .container {
  position: relative;
  z-index: 1;
}

.section-benefits h2 {
  color: var(--green-800);
  text-shadow: none;
  font-size: 3.5em;
}

.section-benefits h2 strong {
  color: var(--red-900);
  font-size: 1.3em;
}

.section-benefits .section-kicker {
  color: var(--red-900);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
}

.benefits-grid {
  grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
  gap: clamp(28px, 5vw, 70px);
}

.benefits-copy {
  align-self: center;
}

.benefits-product {
  display: none;
}

.benefits-grid::after {
  content: none;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 72px;
  padding: 6px 0 6px 78px;
  color: #444444;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1.16rem, 1.35vw, 1.36rem);
  font-weight: 500;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .5s ease, transform .5s ease;
}

.check-list li.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.check-list strong {
  display: block;
  margin-bottom: 1px;
  color: var(--red-700);
  font-weight: 900;
  text-transform: uppercase;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 46px;
  height: 46px;
  background: url("../assets/images/checkitens-icon.svg") center / contain no-repeat;
  border: 0;
  transform: translateY(-50%);
}

.check-list li::after {
  content: none;
}

.check-list li.is-visible::after {
  content: none;
}

.section-applications {
  overflow: hidden;
  color: var(--red-900);
  background: var(--cream);
}

.section-applications .section-kicker,
.section-applications h2 {
  color: var(--red-900);
}

.section-applications h2 strong {
  color: var(--red-500);

}

.application-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: stretch;
  margin: 40px calc(50% - 50vw) 0;
  padding: clamp(42px, 5vw, 64px) max(32px, calc((100vw - var(--container)) / 2));
  background: var(--green-950);
}

.application-card {
  display: flex;
  flex-direction: column;
  height: 390px;
  padding: 26px 28px 24px;
  border: 3px solid var(--cream);
  border-radius: 48px 4px 42px 4px;
  background: transparent;
  opacity: 0;
  transform: translateY(34px) scale(.96);
  transform-origin: center bottom;
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}

.application-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.application-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  flex: 0 0 210px;
  border-radius: 48px 3px 3px;
  transform: scale(1.04);
  transition: transform .9s cubic-bezier(.2, .8, .2, 1);
}

.application-card.is-visible img {
  transform: scale(1);
}

.application-card h3 {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 24px 4px 0;
  color: var(--cream);
  font-size: clamp(1.45rem, 1.65vw, 1.96rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
}

/* .application-card:nth-child(2) h3 {
  font-size: clamp(1.16rem, 1.36vw, 1.6rem);
} */

.more-text {
  margin: 40px 0px -70px 0;
  color: var(--red-900);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  min-height: clamp(330px, 35vw, 430px);
  padding: clamp(34px, 5vw, 66px) clamp(26px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(255, 248, 223, .92), rgba(243, 237, 207, .98)),
    var(--cream-2);
  border-radius: 50px;
  box-shadow: 0 24px 52px rgba(13, 91, 77, .16);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 18px;
  width: min(74%, 900px);
  border-radius: 8px;
  /* background: rgba(255, 255, 255, .42); */
  z-index: 0;
}

.cta-copy,
.cta-alert,
.cta-budget-button {
  position: relative;
  z-index: 1;
}

.cta-copy {
  max-width: 640px;
}

.cta-copy .section-kicker {
  margin-bottom: 18px;
  color: var(--green-800);
  font-size: clamp(2.4rem, 5.2vw, 6.2rem);
  line-height: .88;
  font-weight: 900;
}

.cta-box h2 {
  max-width: 660px;
  color: var(--green-800);
  font-size: clamp(1.65rem, 3.25vw, 2.85rem);
  line-height: 1.12;
}

.cta-alert {
  justify-self: end;
  width: min(100%, 550px);
  filter: drop-shadow(0 18px 22px rgba(13, 91, 77, .18));
}

.cta-budget-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: clamp(60px, 8vw, 100px);
  width: min(100%, 500px);
  margin-top: clamp(8px, 2vw, 18px);
  padding: 18px 30px 18px clamp(92px, 12vw, 154px);
  color: var(--cream-2);
  background:
    linear-gradient(180deg, rgba(203, 53, 61, .2), rgba(143, 29, 36, 0)) 0 0 / 100% 44% no-repeat,
    var(--red-700);
  border-radius: 999px;
  box-shadow:
    0 8px 0 rgba(255, 121, 127, .46),
    inset 0 0 0 2px rgba(255, 248, 223, .2),
    0 16px 30px rgba(143, 29, 36, .28);
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: .95;
  letter-spacing: 0;
  white-space: nowrap;
}

.cta-budget-button:hover,
.cta-budget-button:focus-visible {
  box-shadow:
    0 9px 0 rgba(255, 121, 127, .46),
    inset 0 0 0 2px rgba(255, 248, 223, .28),
    0 18px 34px rgba(143, 29, 36, .3);
}

.cta-budget-icon {
  position: absolute;
  left: clamp(16px, 2.6vw, 34px);
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(50px, 8vw, 70px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 -6px 0 rgba(203, 53, 61, .35);
  transform: translateY(-50%);
}

.cta-budget-icon img {
  width: 52%;
  height: auto;
}

.specs-composition {
  width: min(100% - 24px, 1314px);
}

.specs-composition img {
  display: block;
  width: 100%;
  height: auto;
}

.section-catalog {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 52vw, 760px);
  color: var(--cream);
  background: transparent;
}

.section-catalog::before,
.section-catalog::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.section-catalog::before {
  z-index: 0;
  inset: 0;
/* O background shorthand destrinchado: */
  background-image: url("../assets/images/hero-field-catalog-section.webp");
  background-position: right bottom;
  background-size: 100% ;
  background-repeat: no-repeat;
}

.section-catalog::after {
  z-index: 1;
  inset: 0;
  background: #0d3b31e3;
  clip-path: polygon(0 7%, 11% 12%, 23% 16%, 36% 18%, 49% 18%, 62% 17%, 75% 14%, 88% 10%, 100% 5%, 100% 100%, 0 100%);
}

.section-catalog .catalog-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0%;
  left: -25%;
  width: min(50vw, 750px);
  aspect-ratio: 1 / 1;
  background: url("../assets/images/catalog-shapes.svg") center / contain no-repeat;
  pointer-events: none;
  /* transform: translate(-90%, -50%); */
}

.section-catalog .catalog-grid {
  position: relative;
  z-index: 3;
  min-height: clamp(430px, 42vw, 600px);
}

.catalog-mockup {
  justify-self: center;
  width: min(100%, 570px);
  height: auto;
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-download {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  min-height: clamp(164px, 16vw, 216px);
  padding: 28px 76px 32px 44px;
  color: var(--cream-2);
  background: var(--red-700);
  border-radius: 30px;
  box-shadow: 10px 10px 0 rgba(31, 37, 36, .24);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
  font-weight: 900;
  line-height: .96;
  transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-download::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -16px;
  width: clamp(38px, 5vw, 53px);
  aspect-ratio: 53 / 71;
  background: url("../assets/images/icone-seta-download.svg") center / contain no-repeat;
}

.catalog-download:hover,
.catalog-download:focus-visible {
  transform: translateY(-2px);
  box-shadow: 12px 12px 0 rgba(31, 37, 36, .2);
}

.catalog-download span {
  display: block;
}

.section-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 82px;
  padding-block: clamp(72px, 8vw, 116px);
  color: var(--cream-2);
  background:
    linear-gradient(90deg, rgba(161, 39, 45, .95) 0 47%, rgba(243, 237, 207, .98) 47% 100%),
    var(--red-700);
}

.section-contact::before,
.section-contact::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.section-contact::before {
  content: none;
}

.section-contact::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 53%;
  background: var(--cream-2);
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
}

.contact-copy {
  max-width: 520px;
}

.contact-copy .section-kicker {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
  line-height: .82;
  text-transform: none;
}

.contact-copy h2 {
  max-width: 480px;
  color: var(--cream-2);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
  text-transform: none;
}

.contact-copy h2 strong {
  font-weight: 900;
}

.contact-support {
  position: relative;
  margin-top: clamp(96px, 12vw, 142px);
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.4vw, 1.48rem);
  line-height: 1.18;
}

.contact-support::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(-62px, -5vw, -42px);
  width: min(100%, 316px);
  height: 1px;
  background: var(--mint);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  color: var(--red-900);
  background: var(--cream-2);
  border-radius: 50%;
  box-shadow: 0 8px 0 rgba(31, 37, 36, .16);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--cream-2);
  background: var(--green-800);
  box-shadow: 0 10px 0 rgba(31, 37, 36, .12);
  transform: translateY(-2px);
}

.social-link svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:nth-child(2) svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 0;
  background: var(--cream-2);
  border-radius: 0;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--red-900);
  font-weight: 800;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 37, 36, .35);
  border-radius: 999px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .56);
}

.lead-form textarea {
  border-radius: var(--radius);
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(119, 221, 192, .7);
  border-color: var(--green-800);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.form-feedback.is-error {
  color: var(--red-900);
}

.form-feedback.is-success {
  color: var(--green-800);
}

.catalog-modal[hidden] {
  display: none;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.catalog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 36, .68);
}

.catalog-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: var(--cream-2);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(31, 37, 36, .32);
}

.catalog-modal-panel h2 {
  margin: 0 42px 10px 0;
  color: var(--red-900);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.catalog-modal-panel p {
  margin: 0 0 20px;
}

.catalog-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: var(--red-900);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.catalog-form {
  display: grid;
  gap: 16px;
}

.catalog-form label {
  display: grid;
  gap: 8px;
  color: var(--red-900);
  font-weight: 800;
}

.catalog-form input {
  width: 100%;
  border: 1px solid rgba(31, 37, 36, .35);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .6);
}

.catalog-form input:focus {
  outline: 3px solid rgba(119, 221, 192, .7);
  border-color: var(--green-800);
}

.site-footer {
  color: var(--cream);
  background: var(--red-900);
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  padding-block: 18px;
}

.footer-inner img {
  width: 142px;
  height: auto;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  text-decoration: underline;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  text-decoration: none;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--red-900);
    border: 1px solid rgba(255, 248, 223, .24);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .benefits-grid,
  .specs-grid,
  .catalog-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(480px, 86vw, 640px);
  }

  .hero-bg {
    background-position: 54% bottom;
  }

  .hero-grid {
    /* min-height: clamp(880px, 86vw, 1040px); */
    padding-block: 64px 108px;
  }

  .section-risk {
    background-image:
      linear-gradient(180deg, rgba(6, 63, 52, .5), rgba(6, 63, 52, .92) 46%, rgba(6, 63, 52, .98)),
      url("../assets/images/worker-height.webp");
    background-position:
      center,
      center top;
    background-size:
      auto,
      auto 62%;
    background-repeat: no-repeat;
  }

  .risk-copy {
    justify-self: stretch;
    width: 100%;
  }

  .benefits-grid {
    gap: 42px;
  }

  .section-catalog {
    min-height: auto;
  }

  .section-catalog::after {
    clip-path: polygon(0 5%, 18% 10%, 36% 13%, 54% 14%, 72% 12%, 88% 8%, 100% 4%, 100% 100%, 0 100%);
  }

  .section-catalog .catalog-grid::before {
    top: 18%;
    width: min(72vw, 430px);
    opacity: .8;
  }

  .section-catalog .catalog-grid {
    min-height: 0;
    gap: 28px;
  }

  .section-contact {
    background: var(--red-700);
  }

  .section-contact::after {
    top: auto;
    width: 100%;
    height: 54%;
  }

  .section-contact::before {
    left: 16px;
    top: 43%;
    width: 1px;
    height: 120px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-copy {
    max-width: 620px;
  }

  .contact-support {
    margin-top: 58px;
  }

  .lead-form {
    padding: clamp(22px, 4vw, 34px);
    border-radius: var(--radius);
  }

  .catalog-mockup {
    width: min(92%, 460px);
  }

  .catalog-download {
    width: min(100%, 430px);
  }

  .benefits-grid::after {
    content: none;
  }

  .hero-media {
    order: -1;
  }

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

  .section-video::before,
  .section-video::after {
    width: clamp(420px, 72vw, 620px);
    opacity: .34;
  }

  .section-video::before {
    left: max(-470px, -56vw);
  }

  .section-video::after {
    right: max(-470px, -56vw);
  }

  .stat-card {
    min-height: 330px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .cta-box::before {
    inset: 14px;
    width: auto;
  }

  .cta-copy {
    justify-self: center;
  }

  .cta-alert {
    justify-self: center;
    width: min(76%, 320px);
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 136px;
  }

  .site-nav {
    top: 72px;
  }

  .more-text {
  margin: 40px 0px -20px 0;
}

  .hero-actions,
  .form-row,
  .stats-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
    text-shadow: 5px 7px 0 rgba(0, 86, 73, .8);
  }

  .hero-lead {
    font-size: clamp(1.08rem, 6vw, 1.55rem);
  }

  .section-video::before,
  .section-video::after {
    width: 360px;
    opacity: .24;
  }

  .section-video::before {
    left: -278px;
  }

  .section-video::after {
    right: -278px;
  }

  .section-benefits {
    margin-top: -34px;
    padding-block: 84px 56px;
  }

  .section-benefits::before {
    right: -42vw;
    bottom: 0;
    left: auto;
    width: 145vw;
    height: 100%;
    background-position: right bottom;
    background-size: 145vw auto;
    opacity: .18;
  }

  .section-benefits h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: .96;
  }

  .section-benefits h2 strong {
    display: block;
    font-size: 1.08em;
  }

  .benefits-grid {
    gap: 24px;
  }

  .check-list {
    gap: 14px;
    margin-top: 30px;
  }

  .section-catalog {
    padding-block: 56px 72px;
  }

  .catalog-download {
    min-height: 142px;
    padding: 24px 58px 26px 28px;
    border-radius: 22px;
    font-size: clamp(1.35rem, 7.2vw, 2.15rem);
  }

  .catalog-download::after {
    right: 22px;
    bottom: -12px;
  }

  .stats-grid {
    row-gap: 62px;
  }

  .stat-card {
    min-height: 310px;
  }

  .stat-icon {
    width: 102px;
    height: 102px;
    margin-top: -42px;
  }

  .check-list li {
    min-height: 0;
    padding: 10px 0 10px 58px;
    border-radius: 14px;
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .check-list li::before {
    left: 0;
    width: 38px;
    height: 38px;
  }

  .check-list li::after {
    left: 12px;
  }

  .section-cta {
    padding-block: 58px 78px;
  }

  .cta-box {
    width: min(100% - 20px, var(--container));
    padding: 28px 18px 36px;
  }

  .cta-copy .section-kicker {
    font-size: clamp(2.1rem, 14vw, 4.2rem);
  }

  .cta-box h2 {
    font-size: clamp(1.32rem, 7vw, 2.05rem);
  }

  .cta-budget-button {
    min-height: 76px;
    padding: 15px 18px 15px 88px;
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
    white-space: normal;
  }

  .cta-budget-icon {
    left: 14px;
    width: 58px;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .check-list li,
  .stat-payout-text strong {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
