#testi {
  padding: 8rem 6%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.04),
    rgba(6, 182, 212, 0.04)
  );
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: #1e1d1f;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  box-shadow: 0 2px 20px rgba(99, 102, 241, 0.05);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
  border-color: var(--accent);
}
.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testi-card blockquote {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.t-role {
  font-size: 0.8rem;
  color: var(--muted);
}

#cta {
  padding: 8rem 6%;
  text-align: center;
}
.cta-box {
  max-width: 750px;
  margin: 0 auto;
  background: #1a2b76;
  border: 1.5px solid rgba(99, 102, 241, 0.2);
  border-radius: 28px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 80px rgba(99, 102, 241, 0.12);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15),
    transparent 70%
  );
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
}
.cta-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-input {
  flex: 1;
  min-width: 230px;
  padding: 0.9rem 1.3rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.cta-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.cta-input::placeholder {
  color: var(--muted);
}
.cta-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition:
    left 0.12s ease,
    top 0.12s ease;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

.btn.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn.email {
  background: linear-gradient(135deg, #1b5bc1, #0b4ad1);
}

.btn.email:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.68, 0, 1.1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
