/* =========================================================
   CTA SECTION
   ========================================================= */

.cta {
  background: #f4f6f9;
  padding: 80px 20px;
}

.cta__container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

/* ---- Label ---- */
.cta__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2e7d32;
  margin: 0 0 14px;
}

/* ---- Heading ---- */
.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 18px;
}

/* ---- Supporting text ---- */
.cta__description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 520px;
}

/* ---- Button group ---- */
.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Base button ---- */
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 34px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  border: 2px solid transparent;
  background: none;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease,
              background 0.2s ease,
              color 0.2s ease;
}

/* Primary — charcoal */
.cta__btn--primary {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
}

.cta__btn--primary:hover {
  background: #2e7d32;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.32);
}

.cta__btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* Outline — subtle secondary */
.cta__btn--outline {
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid #cccccc;
  box-shadow: none;
}

.cta__btn--outline:hover {
  border-color: #2e7d32;
  color: #2e7d32;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.12);
}

.cta__btn--outline:active {
  transform: translateY(-1px);
}

/* ---- Trust note ---- */
.cta__container::after {
  content: "No spam. No hidden fees. Cancel anytime.";
  display: block;
  margin-top: 20px;
  font-size: 0.78rem;
  color: #aaaaaa;
  letter-spacing: 0.02em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 480px) {
  .cta {
    padding: 60px 16px;
  }

  .cta__actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta__btn {
    width: 100%;
    max-width: 320px;
  }
}
