.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg,
    #18395F 0%,
    #183D62 8%,
    #184465 16%,
    #194C68 24%,
    #1A5468 32%,
    #1C5E66 42%,
    #1E6860 52%,
    #22786A 62%,
    #267876 72%,
    #288E82 82%,
    #2A9D90 100%);
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.cta__bg-blob {
  position: absolute;
  left: -60px;
  top: 30%;
  width: 300px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.cta__bg-ring {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 350px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.cta__figure {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 280px;
  z-index: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .cta__bg-blob {
    animation: blobFloat 10s ease-in-out infinite alternate;
  }

  .cta__figure {
    animation: blobFloat 10s ease-in-out infinite alternate;
    animation-delay: 2s;
  }
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 40px;
}

.cta__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: white;
  margin-bottom: 16px;
}

.cta__subhead {
  font-size: var(--fs-body);
  color: var(--white-80);
  line-height: var(--lh-body);
  margin-bottom: 36px;
}

.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta__btn--primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: white;
  color: var(--color-navy);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta__btn--secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: white;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  border: 2px solid var(--white-60);
  border-radius: var(--radius-sm);
  transition: all var(--transition-default);
}

.cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cta__subtext {
  font-size: var(--fs-small);
  color: var(--white-60);
}

@media (max-width: 1024px) {
  .cta__figure {
    display: none;
  }
}

@media (max-width: 767px) {
  .cta__bg-blob,
  .cta__bg-ring {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .cta {
    padding: 80px 0 60px;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__btn--primary,
  .cta__btn--secondary {
    justify-content: center;
  }
}
