@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 500;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600 800;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  --black: #080808;
  --white: #fff;
  --aqua: #00eedc;
  --aqua-soft: #6ec1e4;
  --deep-teal: #025d56;
  --muted: #7a7a7a;
  --content: 1245px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Sora", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.cta {
  position: relative;
  display: inline-flex;
  width: 350px;
  height: 60px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--aqua);
  color: #000;
  font-family: "Sora", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgb(0 0 0 / 25%);
}

.cta::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0, rgb(255 255 255 / 40%) 50%, transparent 100%);
  animation: brilho-continuo 3s linear infinite;
  content: "";
}

@keyframes brilho-continuo {
  0% {
    transform: translateX(-150%) skewX(-25deg);
  }

  100% {
    transform: translateX(150%) skewX(-25deg);
  }
}

.cta:focus-visible,
.video-poster:focus-visible,
summary:focus-visible,
.lead-modal button:focus-visible,
.lead-modal input:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

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

body.lead-modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 24px;
  place-items: center;
}

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

.lead-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgb(0 8 8 / 88%);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lead-modal__panel {
  position: relative;
  width: min(640px, 100%);
  padding: 42px 64px 40px;
  transform: translateY(18px) scale(.98);
  border: 1px solid rgb(255 255 255 / 7%);
  border-bottom: 5px solid var(--aqua);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 112%, rgb(0 238 220 / 14%), transparent 38%),
    #030404;
  box-shadow: 0 28px 90px rgb(0 0 0 / 65%), 0 4px 0 #007d74;
  opacity: 0;
  outline: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.lead-modal.is-open .lead-modal__backdrop,
.lead-modal.is-open .lead-modal__panel {
  opacity: 1;
}

.lead-modal.is-open .lead-modal__panel {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #75807f;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lead-modal__close:hover {
  transform: rotate(8deg);
  background: rgb(255 255 255 / 7%);
  color: var(--aqua);
}

.lead-modal__close span::before,
.lead-modal__close span::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.lead-modal__close span::before {
  transform: rotate(45deg);
}

.lead-modal__close span::after {
  transform: rotate(-45deg);
}

.lead-modal__header {
  text-align: center;
}

.lead-modal__eyebrow {
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lead-modal__header h2 {
  color: transparent;
  font-size: clamp(42px, 7vw, 56px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.08;
  -webkit-text-stroke: 1px var(--aqua);
}

.lead-modal__header p:last-child {
  max-width: 390px;
  margin: 16px auto 0;
  color: #f5f7f7;
  font-size: 17px;
  line-height: 1.4;
}

.lead-form {
  display: grid;
  margin-top: 24px;
  gap: 15px;
}

.lead-form__field {
  display: block;
}

.lead-form__field input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #aab2b2;
  border-radius: 28px;
  background: #fff;
  color: #151919;
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form__field input::placeholder {
  color: #737878;
  opacity: 1;
}

.lead-form__field input:hover {
  border-color: #fff;
}

.lead-form__field input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgb(0 238 220 / 17%);
}

.lead-form__field input.is-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgb(255 107 107 / 14%);
}

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

.lead-form__status {
  display: none;
  min-height: 20px;
  margin: -3px 10px -4px;
  color: #ff8c8c;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.lead-form__status:not(:empty) {
  display: block;
}

.lead-form__status.is-success {
  color: var(--aqua);
}

.lead-form__submit {
  position: relative;
  height: 60px;
  overflow: hidden;
  padding: 0 24px;
  cursor: pointer;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(102deg, #42e4dc 0%, var(--aqua) 48%, #00d9c8 100%);
  color: #00110f;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.lead-form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgb(0 238 220 / 23%);
}

.lead-form__submit:disabled {
  cursor: wait;
  opacity: .72;
}

.lead-form__privacy {
  color: #7f8988;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-bottom: 3px solid #009186;
  background: #000;
}

.hero::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #025d56;
  filter: blur(180px);
  content: "";
  pointer-events: none;
}

.particles-js-canvas-el {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--content), calc(100% - 20px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
}

.hero__logo {
  width: 360px;
  margin-top: 74px;
}

.hero h1 {
  width: 100%;
  margin-top: 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.hero .cta {
  margin-top: 20px;
}

.hero__badges {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero__badges img {
  width: 195px;
  height: 86px;
  object-fit: contain;
}

.problem-intro {
  padding: 60px 0 30px;
}

.problem-intro h2,
.testimonials-title h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.cor {
  color: var(--aqua);
  text-shadow: 0 0 12px var(--aqua), 0 0 10px var(--aqua);
}

.corred {
  color: red;
  text-shadow: 0 0 1px red, 0 0 20px red, 0 0 5px red, 0 0 0 red;
}

.problems {
  height: 679px;
}

.problems__inner {
  position: relative;
  width: min(var(--content), calc(100% - 20px));
  height: 100%;
  margin: 0 auto;
}

.problems__image {
  position: absolute;
  top: 109px;
  left: 63px;
  width: 373px;
  height: 461px;
}

.problems__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 747px;
}

.problems__content > h2 {
  height: 62px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 364px);
  grid-template-rows: repeat(3, 143px) 118px;
  gap: 20px;
}

.problem-card {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--aqua);
  border-radius: 15px;
  background: var(--deep-teal);
}

.problem-card::before,
.problem-card::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 50px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: var(--aqua);
  box-shadow: 0 0 15px var(--aqua), 0 0 25px var(--aqua);
  content: "";
}

.problem-card::before {
  left: -5px;
}

.problem-card::after {
  right: -5px;
}

.problem-card h3 {
  width: 243px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.problem-card svg {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

.problem-card--wide {
  grid-column: 1 / -1;
  width: 553px;
  justify-self: center;
}

.problem-card--wide h3 {
  width: 427px;
}

.cta-band {
  display: flex;
  height: 130px;
  align-items: center;
  justify-content: center;
}

.testimonials-title {
  display: flex;
  height: 48px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}

.testimonials {
  height: 1354px;
}

.testimonials__grid {
  display: grid;
  width: min(var(--content), calc(100% - 20px));
  margin: 0 auto;
  padding-top: 45px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 34px;
}

.testimonial {
  min-width: 0;
  text-align: center;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 315px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: #111;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-poster::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff url("../images/favicon.png") center / 28px auto no-repeat;
  box-shadow: 0 1px 5px rgb(0 0 0 / 35%);
  content: "";
}

.video-poster::after {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 60px;
  max-width: calc(100% - 78px);
  overflow: hidden;
  color: #fff;
  content: attr(data-overlay-title) "\A" attr(data-overlay-subtitle);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px #000;
  white-space: pre;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: #f03;
  box-shadow: 0 5px 20px rgb(0 0 0 / 35%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #fff;
  content: "";
}

.video-poster:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: #f00;
}

.stars {
  height: 31px;
  padding-top: 7px;
  color: var(--aqua);
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 24px;
}

.testimonial h3 {
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.technology {
  display: flex;
  height: 168px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 65px;
}

.technology h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.technology h2 strong {
  font-weight: 600;
}

.technology p {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.applications {
  height: 226px;
  padding-top: 10px;
}

.applications__grid {
  display: grid;
  width: min(var(--content), calc(100% - 20px));
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.applications__grid img {
  width: 100%;
  height: 146px;
  object-fit: cover;
}

.benefits-title {
  display: flex;
  height: 102px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 35px;
}

.benefits-title h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.benefits-grid {
  height: 1304px;
  padding-top: 20px;
}

.benefits-grid__inner {
  display: grid;
  width: 1135px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 305px);
  column-gap: 110px;
  row-gap: 20px;
}

.benefits-grid__inner img,
.benefit-final__image img {
  width: 305px;
  height: 408px;
}

.benefit-final {
  height: 448px;
  padding-top: 20px;
}

.benefit-final__inner {
  display: grid;
  width: min(var(--content), calc(100% - 20px));
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-final__image,
.benefit-final__cta {
  display: flex;
  justify-content: center;
}

.benefit-final__cta {
  padding-top: 174px;
}

.about {
  height: 619px;
}

.about__inner {
  display: grid;
  width: min(var(--content), calc(100% - 20px));
  height: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about__content {
  padding-top: 110px;
}

.about__content h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.about__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.about__logo {
  width: 613px;
  height: 529px;
  margin-top: 45px;
  object-fit: contain;
}

.main-video {
  display: flex;
  height: 341px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}

.video-poster--wide {
  width: 1140px;
  height: 315px;
}

.video-poster--wide img {
  object-position: center 47%;
}

.video-poster--wide::after {
  font-size: 16px;
}

.faq {
  min-height: 402px;
  height: auto;
  padding: 35px 0;
}

.faq > h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.faq__list {
  width: min(var(--content), calc(100% - 20px));
  margin: 90px auto 0;
  border: 1px solid #777;
  border-bottom: 0;
}

.faq details {
  border-bottom: 1px solid #777;
  font-family: "Montserrat", Arial, sans-serif;
}

.faq summary {
  position: relative;
  min-height: 47px;
  padding: 13px 24px 12px 44px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
  background: currentColor;
  content: "";
}

.faq summary::after {
  position: absolute;
  top: 50%;
  left: 26px;
  width: 2px;
  height: 14px;
  transform: translateY(-50%);
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.faq details[open] summary {
  color: #00d3c3;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__answer {
  padding: 0 15px 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.faq__answer ul {
  margin: 0;
  padding-left: 24px;
}

.final-cta {
  display: flex;
  height: 226px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-cta h2 {
  margin-top: 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.final-cta > p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1;
}

.cta--compact {
  width: 229px;
  margin-top: 31px;
}

.final-cta footer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 27px;
}

@media (max-width: 1199px) and (min-width: 901px) {
  .problems__image {
    left: 20px;
    width: 340px;
    height: auto;
  }

  .problems__content {
    width: calc(100% - 390px);
  }

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

  .problem-card {
    padding-inline: 18px;
  }

  .problem-card h3 {
    width: auto;
    flex: 1 1 auto;
    font-size: 19px;
  }

  .benefits-grid__inner {
    width: min(100% - 40px, 1015px);
    grid-template-columns: repeat(3, 305px);
    justify-content: space-between;
    column-gap: 0;
  }
}

@media (max-width: 900px) {
  .hero,
  .problem-intro,
  .problems,
  .cta-band,
  .testimonials-title,
  .testimonials,
  .technology,
  .applications,
  .benefits-title,
  .benefits-grid,
  .benefit-final,
  .about,
  .main-video,
  .faq,
  .final-cta {
    height: auto;
  }

  .hero {
    min-height: 687px;
  }

  .hero__content {
    width: min(100% - 32px, 620px);
  }

  .hero__logo {
    width: 61%;
    margin-top: 66px;
    transform: translateX(4px);
  }

  .hero h1 {
    margin-top: 34px;
    font-size: 28px;
    line-height: 1;
  }

  .hero .cta {
    margin-top: 17px;
  }

  .hero__badges {
    width: min(230px, 100%);
    margin-top: 19px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero__badges img {
    width: 195px;
    height: 86px;
  }

  .problem-intro {
    padding: 60px 16px 30px;
  }

  .problem-intro h2 {
    font-size: 28px;
    line-height: 1;
  }

  .problems {
    padding: 0 16px 30px;
  }

  .problems__inner {
    display: flex;
    width: min(100%, 600px);
    height: auto;
    align-items: center;
    flex-direction: column;
  }

  .problems__image,
  .problems__content {
    position: static;
  }

  .problems__image {
    width: min(373px, 88vw);
    height: auto;
  }

  .problems__content {
    width: 100%;
    margin-top: 45px;
    padding-top: 30px;
  }

  .problems__content > h2 {
    width: 100%;
    height: auto;
    margin-bottom: 28px;
    font-size: 30px;
  }

  .problems__grid {
    display: grid;
    width: 100%;
    margin-top: 30px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
  }

  .problem-card,
  .problem-card--wide {
    grid-column: auto;
    width: 100%;
    min-height: 118px;
    justify-self: auto;
    padding: 20px;
  }

  .problem-card h3,
  .problem-card--wide h3 {
    width: auto;
    flex: 1 1 auto;
    font-size: 20px;
    line-height: 1.2;
  }

  .cta-band {
    min-height: 130px;
    padding: 35px 16px;
  }

  .cta {
    width: min(350px, 100%);
    font-size: 20px;
  }

  .testimonials-title {
    min-height: 100px;
    align-items: center;
    padding: 28px 16px;
  }

  .testimonials-title h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .testimonials {
    padding: 10px 16px 25px;
  }

  .testimonials__grid {
    width: min(100%, 600px);
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .video-poster {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .stars {
    height: auto;
    padding-top: 10px;
  }

  .testimonial h3 {
    margin-top: 4px;
  }

  .technology {
    min-height: 168px;
    justify-content: center;
    padding: 40px 16px;
  }

  .technology h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  .technology p {
    margin-top: 14px;
    font-size: 27px;
  }

  .applications {
    padding: 10px 16px 40px;
  }

  .applications__grid {
    width: min(100%, 600px);
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .applications__grid img {
    height: auto;
    aspect-ratio: 305 / 188;
  }

  .applications__grid img:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .benefits-title {
    padding: 30px 16px 35px;
  }

  .benefits-title h2 {
    font-size: 29px;
  }

  .benefits-grid {
    padding: 0 16px;
  }

  .benefits-grid__inner {
    width: min(100%, 680px);
    grid-template-columns: repeat(2, minmax(0, 305px));
    justify-content: center;
    gap: 20px;
  }

  .benefits-grid__inner img,
  .benefit-final__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 305 / 408;
  }

  .benefit-final {
    padding: 20px 16px 50px;
  }

  .benefit-final__inner {
    width: min(100%, 680px);
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 305px));
    justify-content: center;
    gap: 20px;
  }

  .benefit-final__cta {
    padding-top: 0;
  }

  .about {
    padding: 50px 16px;
  }

  .about__inner {
    width: min(100%, 680px);
    height: auto;
    grid-template-columns: 1fr;
  }

  .about__content {
    padding-top: 0;
  }

  .about__content h2 {
    text-align: center;
  }

  .about__content p {
    font-size: 17px;
  }

  .about__logo {
    width: min(520px, 100%);
    height: auto;
    margin: 25px auto 0;
  }

  .main-video {
    padding: 10px 16px 40px;
  }

  .video-poster--wide {
    width: min(100%, 680px);
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .faq {
    padding: 35px 16px 50px;
  }

  .faq > h2 {
    font-size: 29px;
  }

  .faq__list {
    width: min(100%, 680px);
    margin-top: 55px;
  }

  .faq summary {
    padding-right: 16px;
  }

  .final-cta {
    min-height: 240px;
    padding: 20px 16px 15px;
  }

  .final-cta h2 {
    margin-top: 0;
    font-size: 29px;
  }

  .final-cta footer {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .lead-modal {
    padding: 16px;
  }

  .lead-modal__panel {
    padding: 42px 20px 28px;
    border-radius: 16px;
  }

  .lead-modal__close {
    top: 10px;
    right: 10px;
  }

  .lead-modal__eyebrow {
    font-size: 10px;
  }

  .lead-modal__header h2 {
    font-size: clamp(38px, 14vw, 48px);
  }

  .lead-modal__header p:last-child {
    margin-top: 12px;
    font-size: 15px;
  }

  .lead-form {
    margin-top: 20px;
    gap: 12px;
  }

  .lead-form__field input {
    height: 52px;
    font-size: 14px;
  }

  .lead-form__submit {
    height: 56px;
    padding: 0 16px;
    font-size: 15px;
  }

  .benefits-grid__inner,
  .benefit-final__inner {
    grid-template-columns: minmax(0, 305px);
  }

  .benefit-final__cta {
    padding-top: 15px;
  }

  .applications__grid {
    grid-template-columns: 1fr;
  }

  .applications__grid img:last-child {
    grid-column: auto;
    width: 100%;
  }

  .faq summary {
    font-size: 15px;
    line-height: 1.35;
  }
}

@media (max-height: 650px) {
  .lead-modal {
    align-items: start;
  }

  .lead-modal__panel {
    margin-block: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
