/* ============================================================
   cta.css — CTA Strips (Purple, Teal, WhatsApp, Dark)
   ============================================================ */

/* ========== 9. CTA STRIPS ========== */

.cta-strip {
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
}

.cta-strip h3 {
  color: #fff;
  font-size: 15px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 0;
}

.cta-strip .btn {
  flex-shrink: 0;
}

.cta-strip__content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-strip__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cta-strip--purple {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #fff;
}

.cta-strip--teal {
  background: linear-gradient(135deg, var(--color-teal), #11b8a6);
  color: #fff;
}

.cta-strip--dark {
  background: linear-gradient(135deg, #26222f, #3d3650);
  color: #fff;
}

.cta-strip--purple h3,
.cta-strip--teal h3,
.cta-strip--dark h3 {
  color: #fff;
}

.cta-strip--purple p,
.cta-strip--teal p,
.cta-strip--dark p {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .cta-strip {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 20px 24px;
  }

  .cta-strip__content {
    flex-direction: column;
    gap: 8px;
  }

  .cta-strip .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Inline CTA ── */

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 14px;
  padding: 1.2rem 2rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.inline-cta a:not(.btn) {
  color: var(--color-primary);
  font-weight: 700;
}

.inline-cta a:not(.btn):hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .inline-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* Card — CTA Banner (large centered version) */
.cta-banner {
  background: linear-gradient(145deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.cta-banner--teal {
  background: linear-gradient(145deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
}

.cta-banner--purple {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner--whatsapp {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-banner--whatsapp h3 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner--whatsapp p { color: rgba(255,255,255,0.9); }

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}

.cta-banner__inner h3 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner__inner p { color: rgba(255,255,255,0.9); }

/* ── Final CTA (dark section) ── */

.final-cta {
  background: linear-gradient(135deg, #2d1f3d, #1a1625);
  padding: 64px 32px;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 24px;
}

.final-cta__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.final-cta__deadline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* ── Bonus Banner ── */

.bonus-banner {
  background: linear-gradient(135deg, var(--color-teal) 0%, #0d7a6e 100%);
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-banner h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.bonus-banner h3 span {
  color: #ffe066;
}

.bonus-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.7;
  position: relative;
}

.bonus-banner .btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  position: relative;
}

.bonus-banner .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
}

/* ── CTA Buttons ── */

.btn--cta-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(172, 50, 138, 0.3);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  border: none;
}

.btn--cta-gradient:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(172, 50, 138, 0.4);
  color: #fff;
}

.btn--cta-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 32px;
  font-weight: 700;
}

.btn--cta-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--cta-lg {
  padding: 16px 40px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .final-cta { padding: 44px 20px; }
  .final-cta h2 { font-size: 26px; }
  .final-cta__pricing { flex-direction: column; align-items: center; gap: 4px; }
  .bonus-banner { padding: 32px 24px; }
  .btn--cta-lg { padding: 14px 32px; font-size: 15px; }
}

@media (max-width: 768px) {
  .cta-banner { padding: 2rem 1.5rem; }
  .cta-banner__inner,
  .cta-banner--whatsapp {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
