.content-cta {
  position: relative;
  overflow: hidden;
  padding-block: 80px;
  padding-inline: 0;
  color: var(--white);
  background-color: var(--blue);
  background-image:
    url("../images/cta-bg.webp"),
    linear-gradient(232.28deg, #3edcfa 1.49%, #1b85ef 100%);
  background-position:
    right top,
    center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-cta__inner {
  width: 80vw;
  max-width: 1152px;
  margin-inline: auto;
}

.content-cta__download {
  max-width: fit-content;
  margin-block-end: 80px;
  text-align: center;
}

.content-cta__eyebrow,
.content-cta__title,
.content-cta__features-title,
.content-cta__contact-title,
.content-cta__contact-text {
  margin-inline: 0;
}

.content-cta__eyebrow {
  margin-block: 0 4px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(27, 133, 239, 0.45);
}

.content-cta__title {
  margin-block: 0 32px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 24px rgba(27, 133, 239, 0.55);
}

.content-cta__features {
  margin-block-end: 32px;
}

.content-cta__features-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-block: 0 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.content-cta__features-title::before {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-check-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.content-cta__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-cta__feature-list li {
  min-width: 112px;
  padding-block: 6px;
  padding-inline: 8px;
  border-radius: 999px;
  color: var(--black);
  text-align: center;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.content-cta__download-button {
  position: relative;
  display: inline-flex;
  min-width: 360px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding-inline: 48px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  background-color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  transition: filter 0.3s ease;
}

.content-cta__download-button:hover {
  filter: brightness(1.08);
}

.content-cta__download-button img {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.content-cta__contact {
  padding-block: 40px 80px;
  padding-inline: 40px;
  border-radius: 16px;
  color: var(--black);
  background-color: var(--white);
}

.content-cta__contact-title {
  margin-block: 0 32px;
  color: var(--blue);
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
}

.content-cta__contact-grid {
  max-width: 880px;
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-inline: auto;
}

.content-cta__contact-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.content-cta__contact-item + .content-cta__contact-item {
  padding-inline-start: 120px;
}

.content-cta__contact-item + .content-cta__contact-item::before {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 2px;
  background-image: radial-gradient(
    circle,
    var(--gray) 1px,
    transparent 1px
  );
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 2px 6px;
  content: "";
}

.content-cta__contact-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.content-cta__contact-text {
  margin-block: 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.content-cta__contact-button {
  position: relative;
  display: inline-flex;
  min-width: 320px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  padding-inline: 48px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.content-cta__contact-button:hover {
  opacity: 0.6;
}

.content-cta__contact-button::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 24px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.content-cta__contact-button::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 31px;
  width: 10px;
  height: 9px;
  background-color: var(--blue);
  content: "";
  mask-image: url("../images/icon-arrow-right.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("../images/icon-arrow-right.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transform: translateY(-50%);
}

.content-footer {
  padding-block: 80px;
  padding-inline: 0;
  color: var(--white);
  background-color: var(--black);
}

.content-footer__inner {
  width: 80vw;
  max-width: 1152px;
  margin-inline: auto;
}

.content-footer__brand {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-block-end: 48px;
}

.content-footer__logo {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.content-footer__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.content-footer__socials,
.content-footer__nav ul,
.content-footer__bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-footer__socials {
  display: flex;
  gap: 12px;
}

.content-footer__socials a,
.content-footer__socials img {
  display: block;
}

.content-footer__socials img {
  width: 48px;
  height: 48px;
}

.content-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.content-footer a:hover {
  opacity: 0.6;
}

.content-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 80px;
  margin-block-end: 64px;
}

.content-footer__heading {
  margin-block: 0 40px;
  margin-inline: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.content-footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block-end: 8px;
}

.content-footer__column {
  position: relative;
  padding-inline-start: 24px;
  width: 100%;
  max-width: 218px;
}

.content-footer__column::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 2px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  content: "";
}

.content-footer__column::after {
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 0;
  width: 2px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 2px 6px;
  content: "";
}

.content-footer__column li + li {
  margin-block-start: 0;
}

.content-footer__column li {
  position: relative;
  padding-inline-start: 16px;
  line-height: 1;
}

.content-footer__column li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  content: "";
  transform: translateY(-50%);
}

.content-footer__column a {
  display: inline-block;
}

.content-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block-start: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.content-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.content-footer__bottom small {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.4;
}

.content-footer__bottom li {
  position: relative;
}

.content-footer__bottom a {
  font-size: 14px;
}

.content-footer__bottom li + li::before {
  color: rgba(255, 255, 255, 0.7);
  content: "︙";
  font-size: 12px;
  line-height: 1;
  margin-inline-end: 12px;
}

@media (max-width: 767px) {
  .content-cta {
    padding-block: 64px;
  }

  .content-cta__inner {
    width: calc(100% - 32px);
  }

  .content-cta__download {
    margin-block-end: 48px;
  }

  .content-cta__eyebrow {
    font-size: 20px;
  }

  .content-cta__title {
    font-size: 32px;
  }

  .content-cta__download-button {
    width: 100%;
    min-width: 0;
  }

  .content-cta__contact {
    padding-block: 32px;
    padding-inline: 24px;
  }

  .content-cta__contact-title {
    margin-block-end: 32px;
    font-size: 22px;
  }

  .content-cta__contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-cta__contact-item + .content-cta__contact-item {
    padding-block-start: 40px;
    padding-inline-start: 0;
  }

  .content-cta__contact-item + .content-cta__contact-item::before {
    inset-block-start: 0;
    inset-inline: 0;
    width: 100%;
    height: 2px;
    background-image: radial-gradient(
      circle,
      var(--gray) 1px,
      transparent 1px
    );
    background-repeat: repeat-x;
    background-size: 6px 2px;
  }

  .content-cta__contact-button {
    width: 100%;
    min-width: 0;
  }

  .content-footer__brand,
  .content-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}
