.cta-prefooter {
  padding: 0 56px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .cta-prefooter {
    padding: 0 20px;
  }
}

.cta-prefooter__container {
  max-width: 1328px;
  margin: 0 auto;
  height: 378px;
  border-radius: 30.764px;
  overflow: visible;
  box-shadow: 0px 32.046px 64.093px -15.382px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: linear-gradient(156.15deg, rgba(244, 156, 56, 1) 0%, rgba(241, 99, 43, 1) 26.23%, rgba(164, 178, 59, 1) 46.15%, rgba(63, 175, 143, 1) 71.15%, rgba(221, 152, 74, 1) 91.83%);
}

.cta-prefooter__container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.08) 30px,
      rgba(255, 255, 255, 0.08) 31px);
  pointer-events: none;
  z-index: 0;
  border-radius: 30.764px;
}

.cta-prefooter__container::after {
  content: '';
  position: absolute;
  inset: -100px;
  background-image:
    radial-gradient(circle at 95% -5%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 120px),
    radial-gradient(circle at 102% 10%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 180px),
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80px),
    radial-gradient(circle at 5% 105%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 120px),
    radial-gradient(circle at -2% 90%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 180px),
    radial-gradient(circle at 10% 95%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80px),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60px),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60px);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .cta-prefooter__container {
    height: auto;
    min-height: 378px;
  }
}

.cta-prefooter__icon {
  position: relative;
  width: 96px;
  height: 88px;
  z-index: 2;
  margin-bottom: 24px;
}

.cta-prefooter__icon svg {
  width: 100%;
  height: 100%;
}

.cta-prefooter__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 853px;
  margin-bottom: 24px;
}

.cta-prefooter__title {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 20px;
}

.cta-prefooter__description {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.cta-prefooter__buttons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .cta-prefooter__buttons {
    flex-direction: column;
    width: 100%;
  }
}

.cta-prefooter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 32px;
  border-radius: 21947630px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 13.082px 19.623px -3.925px rgba(0, 0, 0, 0.1), 0px 5.233px 7.849px -5.233px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.cta-prefooter__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .cta-prefooter__button {
    width: 100%;
  }
}

.cta-prefooter__button--primary {
  background: #fff;
  color: #00786f;
}

.cta-prefooter__button--primary:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0px 16px 24px -4px rgba(0, 0, 0, 0.15), 0px 6px 10px -6px rgba(0, 0, 0, 0.1);
}

.cta-prefooter__button--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-prefooter__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0px 16px 24px -4px rgba(0, 0, 0, 0.15), 0px 6px 10px -6px rgba(0, 0, 0, 0.1);
}