/* ==========================================================================
   cta.css — "Save Time" green call-to-action banner
   Self-contained, includes its own responsive rules.
   ========================================================================== */

.tp-cta {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 2.5rem;
  color: var(--tp-white);
  background:
    radial-gradient(120% 160% at 12% 0%, #0d8b40 0%, #097736 45%, #066b30 100%);
  box-shadow: 0 18px 40px rgba(9, 119, 54, 0.22);
}

.tp-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Illustration */
.tp-cta__media {
  flex: 0 0 auto;
  width: 250px;
}

.tp-cta__media img {
  width: 100%;
  height: auto;
}

/* Copy */
.tp-cta__body {
  flex: 1 1 auto;
}

.tp-cta__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--tp-white);
}

.tp-cta__text {
  margin: 0.8rem 0 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 30em;
}

.tp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Feature checklist card */
.tp-cta__features {
  flex: 0 0 auto;
  width: 290px;
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
}

.tp-cta__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.tp-cta__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--tp-text);
}

.tp-cta__list img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* ==========================================================================
   Responsive — cta
   ========================================================================== */
@media (max-width: 991.98px) {
  .tp-cta__inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .tp-cta__media {
    width: 200px;
  }

  .tp-cta__text {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-cta__actions {
    justify-content: center;
  }

  .tp-cta__features {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 575.98px) {
  .tp-cta {
    padding: 1.75rem 1.25rem;
  }

  .tp-cta__actions .tp-btn {
    width: 100%;
  }

  .tp-cta__list {
    text-align: left;
  }
}
