.atl-indp-cta-section {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 6rem 2rem;
}
@media (min-width: 768px) {
  .atl-indp-cta-section {
    padding: 6rem 3.5rem;
  }
}
@media (min-width: 1440px) {
  .atl-indp-cta-section {
    padding: 6rem 5rem;
  }
}
.atl-indp-cta-section--no-border {
  border-top: none;
}

.atl-indp-cta {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  background: #353452;
  border-radius: 40px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  color: #fff;
}
@media (min-width: 1024px) {
  .atl-indp-cta {
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem;
  }
}
.atl-indp-cta::before, .atl-indp-cta::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(19, 119, 119, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.atl-indp-cta::before {
  top: -10rem;
  left: -10rem;
}
.atl-indp-cta::after {
  bottom: -10rem;
  right: -10rem;
}

.atl-indp-cta__text {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.atl-indp-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.atl-indp-cta__desc {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.atl-indp-cta__action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .atl-indp-cta__action {
    width: auto;
    text-align: right;
  }
}

.atl-indp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: #137777;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.atl-indp-cta__btn:hover {
  opacity: 0.9;
}
.atl-indp-cta__btn--white {
  background: #fff;
  color: #353452;
  font-weight: 800;
  letter-spacing: 0.02em;
}
