:root {
  --teal: #19c1c8;
  --yellow: #ffb511;
  --navy: #071a2b;
  --off-white: #f7f8f6;
  --white: #ffffff;
  --soft-gray: #e7ebec;
  --body: #172937;
  --font-sans: 'Plus Jakarta Sans', Inter, Avenir, 'Helvetica Neue', Arial, sans-serif;
  --content-width: 1200px;
  --page-padding: 24px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}
body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
img,
video {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.07;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: clamp(2.75rem, 3.5vw, 3.2rem);
}
h3 {
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-transform: uppercase;
}

.container {
  margin-inline: auto;
  max-width: var(--content-width);
  width: calc(100% - (2 * var(--page-padding)));
}
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.eyebrow {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.rule {
  background: var(--teal);
  display: block;
  height: 2px;
  margin-block: 2.4rem 2.35rem;
  width: 101px;
}
.rule--yellow {
  background: var(--yellow);
}
.rule--navy {
  background: var(--navy);
  height: 1px;
  margin: 1.45rem auto 1.7rem;
  width: 120px;
}
.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 700;
  gap: 1.1rem;
  justify-content: center;
  letter-spacing: 0;
  min-height: 50px;
  padding: 0 1.45rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}
.button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.button span {
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 0.7;
}
.button--teal {
  background: var(--teal);
  color: var(--navy);
}
.button--yellow {
  background: var(--yellow);
  color: var(--navy);
  margin-top: 2.35rem;
}

.hero {
  background: var(--navy);
  color: var(--white);
  height: 750px;
  overflow: hidden;
  position: relative;
}
.hero__media,
.hero__shade {
  inset: 0;
  position: absolute;
}
.hero__media {
  background: #1b2a31;
}
.hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.hero__shade {
  background: linear-gradient(
    90deg,
    rgba(3, 15, 25, 0.82) 0%,
    rgba(3, 15, 25, 0.48) 53%,
    rgba(3, 15, 25, 0.35) 100%
  );
}
.site-header {
  height: 100px;
  position: relative;
  z-index: 2;
}
.site-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
.site-header .button > img {
  flex: 0 0 17.5px;
  height: 13.5px;
  max-width: none;
  width: 17.5px;
}
.site-header .button,
.hero__copy .button {
  font-size: 16px;
  font-weight: 500;
}
.brand {
  display: inline-block;
}
.brand--hero {
  width: 105px;
}
.brand img {
  width: 100%;
}
.hero__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 650px;
  position: relative;
  z-index: 1;
}
.hero__copy {
  grid-column: 1 / span 7;
  padding-top: 91px;
}
.hero__copy h1 {
  font-weight: 700;
  letter-spacing: 0.2px;
  max-width: 650px;
}
.hero__accent {
  color: var(--teal);
  display: block;
  margin-top: 0.45rem;
}
.hero__copy > p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 610px;
}
.hero__copy .button > img {
  flex: 0 0 17.5px;
  height: 13.5px;
  max-width: none;
  width: 17.5px;
}
.phone {
  align-self: start;
  clip-path: inset(0 0 1.7% 0);
  grid-column: 8 / span 4;
  margin: 16px 0 0 11px;
  position: relative;
  width: 357px;
  z-index: 2;

  .mute {
    display: block;
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 11px;
    color: #071a2b;
    line-height: 35px;
    text-transform: uppercase;
    border: 0;
    border-radius: 8px;
    height: 35px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .2);
    padding: 0 30px 0 10px ;
    transition-duration: 0.15s;
    -webkit-user-select: none;
    user-select: none;

    &:hover {
       background-color: rgba(255, 255, 255, .5);
    }
  
    
    &::after {
      content: '';
      display: block;
      position: absolute;
      width: 20px;
      height: 20px;
      right: 7px;
      top: 7px;
      background-image: url('../images/sound-max.svg');
      background-position: center;
      background-repeat: no-repeat;
      background-size: 16px 16px;
    }
  }

   .muted::after {
      background-image: url('../images/sound-mute.svg');
    }


}
.phone__screen {
  background: var(--navy) url('../images/hero-video-poster.jpg') center / cover no-repeat;
  inset: 9.8% 4.4% 1.7%;
  overflow: hidden;
  position: absolute;
}
.phone__screen video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.phone__time {
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  font-size: 13px;
  font-weight: 600;
  left: calc(10% + 3px);
  letter-spacing: -0.02em;
  line-height: 1;
  position: absolute;
  top: calc(5.8% - 6px);
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
}
.phone__frame {
  pointer-events: none;
  position: relative;
  width: 100%;
  z-index: 1;
}

.benefits {
  background: var(--off-white);
  padding: 50px 0 80px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.benefits__intro {
  grid-column: 1 / span 3;
  padding-right: 38px;
}
.benefits__intro .eyebrow {
  font-size: 22px;
  font-weight: 700;
}
.benefits__intro h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 1.05rem;
}
.benefits__intro .rule {
  margin-block: 2.55rem 2.55rem;
}
.benefits__intro > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.05rem;

  &:last-child {
    margin-bottom: 0;
  }
}
.benefits__cards {
  display: grid;
  grid-column: 4 / -1;
  grid-template-columns: repeat(4, 1fr);
}
.benefit {
  border-left: 1px solid #dce2e4;
  /* min-height: 352px; */
  padding: 0 22px;
}
.benefit:last-child {
  border-right: 1px solid #dce2e4;
}
.benefit > img {
  height: 48px;
  margin-bottom: 17px;
  max-width: 48px;
  object-fit: contain;
}
.benefit h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.benefit p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.35rem;

  &:last-child {
    margin-bottom: 0;
  }
}
.benefit a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.process {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 500px;
  padding-inline: max(0px, calc((100vw - var(--content-width)) / 2));
}
.process-card {
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.process-card > img {
  background: #34414c;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.process-card__shade {
  background: linear-gradient(180deg, rgba(7, 26, 43, 0.04) 24%, rgba(7, 26, 43, 0.85) 100%);
  inset: 0;
  position: absolute;
}
.process-card__copy {
  bottom: 38px;
  color: var(--white);
  left: 31px;
  max-width: 260px;
  position: absolute;
  z-index: 1;
}
.process-card__copy > span {
  color: var(--teal);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}
.process-card__copy h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 10px 0 8px;
  text-transform: uppercase;
}
.process-card__copy p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.partners {
  background: var(--soft-gray);
  padding: 40px 0 49px;
  text-align: center;
}
.partners__inner > .eyebrow {
  font-size: 22px;
  font-weight: 700;
}
.partners__inner > p:not(.eyebrow) {
  font-size: 16px;
  font-weight: 500;
}
.partner-logos {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 44px;
}
.partner-logos img {
  flex: 1 1 0;
  height: 66px;
  max-width: 180px;
  min-width: 0;
  object-fit: contain;
  width: 100%;
}

.contact {
  background: var(--off-white);
  padding: 72px 0 80px;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.contact__copy {
  grid-column: 1 / span 4;
  padding-right: 35px;
}
.contact__copy .eyebrow {
  font-size: 22px;
  font-weight: 700;
}
.contact__copy h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 1rem;
}
.contact__copy .rule {
  margin-block: 2.5rem 2rem;
}
.contact__copy > p:not(.eyebrow) {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  max-width: 300px;
}
.contact__copy ul {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.contact__copy li {
  align-items: center;
  display: flex;
  gap: 0.55rem;
}
.contact__copy li img {
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}
.contact-form {
  background: var(--soft-gray);
  border: 1px solid #d2dde0;
  display: grid;
  gap: 30px 25px;
  grid-column: 5 / -1;
  grid-template-columns: 1fr 1fr;
  padding: 38px;
}
.contact-form input,
.contact-form textarea {
  background: var(--off-white);
  border: 1px solid #cad7da;
  border-radius: 0;
  color: var(--navy);
  font-size: 1rem;
  outline-color: var(--teal);
  padding: 13px 18px;
  width: 100%;
}
.contact-form input {
  height: 51px;
}
.contact-form textarea {
  height: 144px;
  resize: vertical;
}
.contact-form__message {
  grid-column: 1 / -1;
}
.consent {
  grid-column: 1 / -1;
  margin-bottom: -5px;
  margin-top: -10px;
  position: relative;
}
.consent > input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.consent__label {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 12px;
  line-height: 1.35;
}
.consent__box {
  background: var(--off-white);
  border: 1px solid #cad7da;
  flex: 0 0 25px;
  height: 25px;
  width: 25px;
}
.consent > input:checked + .consent__label .consent__box {
  background-image: url('../images/icon-check.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.consent > input:focus-visible + .consent__label .consent__box {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.consent__label a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form .button {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  justify-self: start;
  min-height: 49px;
  white-space: nowrap;
  width: fit-content;
}

.contact-simple {
  background: var(--off-white);
  padding: 72px 0 80px;
  text-align: center;
}
.contact-simple__inner > .eyebrow {
  font-size: 22px;
  font-weight: 700;
}
.contact-simple h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 1rem;
}
.contact-simple .rule {
  margin: 2.5rem auto 2rem;
}
.contact-simple__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  margin-inline: auto;
  max-width: 620px;
}
.contact-simple__card {
  background: var(--soft-gray);
  border: 1px solid #d2dde0;
  display: grid;
  gap: 28px;
  margin: 42px auto 0;
  padding: 48px 64px;
  width: min(496px, 100%);
}
.contact-simple__row {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.contact-simple__row img {
  flex: 0 0 auto;
  height: 34px;
  object-fit: contain;
  width: 34px;
}
.contact-simple__row a {
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-simple__row a:hover,
.contact-simple__row a:focus-visible {
  text-decoration: none;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}
.site-footer__inner {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-block: 36px;
}
.brand--footer {
  width: 103px;
}
.site-footer__inner > p {
  font-size: 16px;
  font-weight: 700;
}
.site-footer__inner > p a {
  color: inherit;
  text-decoration: none;
}
.site-footer__inner > p a:hover,
.site-footer__inner > p a:focus-visible {
  text-decoration: underline;
}
.site-footer__inner > p span {
  margin-inline: 0.65rem;
}
.social-links {
  display: flex;
  gap: 10px;
  justify-content: end;
}
.social-links a {
  display: block;
}
.social-links img {
  height: 40px;
  object-fit: contain;
  width: 40px;
}

@media (max-width: 1023px) {
  .hero__copy {
    grid-column: 1 / span 7;
  }
  .phone {
    grid-column: 8 / span 5;
    width: min(100%, 356px);
  }
  .benefits__intro {
    grid-column: 1 / span 4;
  }
  .benefits__cards {
    grid-column: 5 / -1;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .benefit {
    min-height: 0;
  }
  .process {
    padding-inline: 0;
  }
  .contact__copy {
    grid-column: 1 / span 4;
  }
  .contact-form {
    grid-column: 5 / -1;
  }
  .contact-simple {
    padding-block: 36px 40px;
  }
  .contact-simple h2 {
    font-size: 40px;
    font-weight: 700;
  }
}

@media (min-width: 701px) and (max-width: 1023px) {
  .hero {
    height: auto;
  }
  .hero__content {
    height: auto;
    min-height: 0;
  }
  .hero__copy {
    padding-top: 52px;
  }
  .hero__copy h1 {
    font-size: 40px;
    font-weight: 700;
  }
  .phone {
    margin: 100px 0 -10px 11px;
    width: 310px;
  }
  .benefits {
    padding-block: 25px 40px;
  }
  .benefits__intro h2 {
    font-size: 40px;
    font-weight: 700;
  }
  .benefit:last-child {
    border-right: 0;
  }
  .process-card__copy > span {
    font-size: 52px;
    font-weight: 700;
  }
  .partners {
    padding-block: 20px 25px;
  }
  .contact {
    padding-block: 36px 40px;
  }
  .contact__copy h2 {
    font-size: 40px;
    font-weight: 700;
  }
}

@media (max-width: 700px) {
  :root {
    --page-padding: 20px;
  }
  h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }
  h2 {
    font-size: 2.8rem;
  }
  .hero {
    height: auto;
    min-height: 0;
  }
  .site-header {
    height: 80px;
  }
  .site-header .button {
    display: none;
  }
  .brand--hero {
    width: 85px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .hero__copy {
    padding-top: 32px;
  }
  .hero__copy h1 {
    font-size: 36px;
    font-weight: 700;
  }
  .hero__copy > p {
    font-size: 1rem;
  }
  .phone {
    align-self: center;
    margin: 34px 0 -9px;
    width: min(72vw, 310px);
  }
  .phone__time {
    font-size: 12px;
  }
  .benefits {
    padding-block: 32px;
  }
  .benefits__grid,
  .contact__grid {
    display: block;
  }
  .benefits__intro,
  .contact__copy {
    padding-right: 0;
  }
  .benefits__intro h2 {
    font-size: 36px;
    font-weight: 700;
  }
  .benefits__cards {
    display: block;
    margin-top: 36px;
  }
  .benefit {
    border-left: 0;
    border-top: 1px solid #dce2e4;
    padding: 20px 0;
  }
  .benefit:last-child {
    border-right: 0;
  }
  .process {
    display: block;
    height: auto;
  }
  .process-card {
    height: 390px;
  }
  .partners {
    padding-block: 32px;
  }
  .partner-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 22px;
  }
  .partner-logos img {
    height: 72px;
    max-width: 100%;
    width: 100%;
  }
  .contact {
    padding-block: 32px;
  }
  .contact__copy {
    margin-bottom: 24px;
  }
  .contact__copy h2 {
    font-size: 36px;
    font-weight: 700;
  }
  .contact-simple {
    padding-block: 32px;
  }
  .contact-simple h2 {
    font-size: 36px;
    font-weight: 700;
  }
  .contact-simple__card {
    gap: 22px;
    margin-top: 32px;
    padding: 32px 20px;
  }
  .contact-simple__row {
    gap: 14px;
  }
  .contact-simple__row img {
    height: 30px;
    width: 30px;
  }
  .contact-simple__row a {
    font-size: 20px;
    font-weight: 700;
  }
  .contact-form {
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .contact-form__message {
    grid-column: auto;
  }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: auto;
    padding-block: 24px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
