/* ==================================================
   CTA
================================================== */

/* ==================================================
   CTA SECTION
================================================== */

.cta {
  position: relative;

  overflow: hidden;

  background: #14213d;

  padding-block: 6rem;

  text-align: center;
}

/* ==================================================
   DECORATIVE CIRCLE
================================================== */

.cta::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  top: -160px;
  left: -100px;

  background: rgba(245, 158, 11, 0.08);

  border-radius: 50%;
}

.cta::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -100px;
  bottom: -150px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 50%;
}

/* ==================================================
   CTA CONTENT
================================================== */

.cta__content {
  position: relative;

  max-width: 700px;

  margin-inline: auto;

  z-index: 1;
}

/* ==================================================
   CTA EYEBROW
================================================== */

.cta__eyebrow {
  margin-bottom: 1rem;

  color: #f59e0b;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

/* ==================================================
   CTA TITLE
================================================== */

.cta__title {
  margin-bottom: 1.25rem;

  color: #ffffff;

  font-size: 3rem;
  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -0.03em;
}

.cta__title span {
  color: #f59e0b;
}

/* ==================================================
   CTA DESCRIPTION
================================================== */

.cta__description {
  max-width: 560px;

  margin-inline: auto;
  margin-bottom: 2rem;

  color: #cbd5e1;

  font-size: 0.95rem;

  line-height: 1.7;
}

/* ==================================================
   CTA BUTTON
================================================== */

.cta .button {
  min-width: 170px;
}

/* ==================================================
   TABLET
   1024px
================================================== */

@media (max-width: 1024px) {
  .cta {
    padding-block: 5rem;
  }

  .cta__title {
    font-size: 2.6rem;
  }

  .cta__description {
    font-size: 0.9rem;
  }

  .cta::before {
    width: 260px;
    height: 260px;

    top: -130px;
    left: -100px;
  }

  .cta::after {
    width: 220px;
    height: 220px;

    right: -90px;
    bottom: -120px;
  }
}

/* ==================================================
   MOBILE
   768px
================================================== */

@media (max-width: 768px) {
  .cta {
    padding-block: 4.5rem;
  }

  .cta__content {
    max-width: 600px;
  }

  .cta__eyebrow {
    font-size: 0.65rem;
  }

  .cta__title {
    font-size: 2.25rem;

    line-height: 1.15;
  }

  .cta__description {
    max-width: 500px;

    font-size: 0.85rem;

    line-height: 1.65;
  }

  .cta .button {
    min-width: 160px;
  }

  .cta::before {
    width: 220px;
    height: 220px;

    top: -110px;
    left: -90px;
  }

  .cta::after {
    width: 190px;
    height: 190px;

    right: -80px;
    bottom: -100px;
  }
}

/* ==================================================
   SMALL MOBILE
   480px
================================================== */

@media (max-width: 480px) {
  .cta {
    padding-block: 4rem;
  }

  .cta__eyebrow {
    margin-bottom: 0.75rem;

    font-size: 0.6rem;

    letter-spacing: 0.1em;
  }

  .cta__title {
    margin-bottom: 1rem;

    font-size: 1.9rem;

    letter-spacing: -0.02em;
  }

  .cta__description {
    margin-bottom: 1.5rem;

    font-size: 0.8rem;

    line-height: 1.6;
  }

  .cta .button {
    width: 100%;
    max-width: 220px;

    min-width: 0;

    margin-inline: auto;
  }

  .cta::before {
    width: 180px;
    height: 180px;

    top: -90px;
    left: -80px;
  }

  .cta::after {
    width: 160px;
    height: 160px;

    right: -70px;
    bottom: -80px;
  }
}
