/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS - Social Proof Real
   ═══════════════════════════════════════════════════════════════ */

/* ── BEGINNER BANNER ── */
.beginner-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(0,229,204,.08) 0%, rgba(255,107,53,.08) 100%);
  border: 2px solid rgba(0,229,204,.25);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  animation: heroFadeUp .6s ease both;
  animation-delay: 1.1s;
}

.beginner-banner-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.beginner-banner-content {
  flex: 1;
}

.beginner-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .4rem;
}

.beginner-banner-text {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text2);
}

.beginner-banner-text strong {
  color: var(--text);
  font-weight: 600;
}

.beginner-banner-cta {
  padding: .7rem 1.2rem;
  background: var(--teal);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.beginner-banner-cta:hover {
  background: var(--accent);
  transform: translateX(3px);
}

/* Light mode */
body.light-mode .beginner-banner {
  background: linear-gradient(135deg, rgba(0,229,204,.12) 0%, rgba(255,107,53,.12) 100%);
  border-color: rgba(0,229,204,.35);
}

/* Mobile */
@media (max-width: 768px) {
  .beginner-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
    gap: 1rem;
  }
  
  .beginner-banner-icon {
    font-size: 2rem;
  }
  
  .beginner-banner-title {
    font-size: 1.05rem;
  }
  
  .beginner-banner-text {
    font-size: .78rem;
  }
  
  .beginner-banner-cta {
    width: 100%;
    justify-content: center;
    padding: .8rem 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS - Social Proof Real
   ═══════════════════════════════════════════════════════════════ */

.hero-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  animation: heroFadeUp .6s ease both;
  animation-delay: .9s;
}

.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 1.2rem;
  transition: all .3s ease;
}

.testimonial-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(0,229,204,.3);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text2);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .15rem;
}

.testimonial-location {
  font-size: .68rem;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

/* Light mode */
body.light-mode .testimonial-card {
  background: rgba(0,0,0,.02);
  border-color: rgba(0,0,0,.08);
}

body.light-mode .testimonial-card:hover {
  background: rgba(0,0,0,.04);
  border-color: var(--teal);
}

body.light-mode .testimonial-quote {
  color: var(--text);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-testimonials {
    grid-template-columns: 1fr;
    gap: .8rem;
    margin: 1.5rem 0;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-quote {
    font-size: .78rem;
  }
  
  .testimonial-avatar {
    width: 32px;
    height: 32px;
    font-size: .65rem;
  }
  
  .testimonial-name {
    font-size: .75rem;
  }
  
  .testimonial-location {
    font-size: .64rem;
  }
}
