/* Hero 10 - Testimonial Spotlight */

.hero {
  background-color: var(--color-surface);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-background) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-4);
  text-align: center;
}

.hero-quote {
  position: relative;
  margin-bottom: var(--space-8);
}

.hero-quote::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
}

.hero-quote-text {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-secondary);
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-quote-text {
    font-size: var(--text-4xl);
  }
}

.hero-rating {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.hero-rating svg {
  width: 24px;
  height: 24px;
  color: #fbbf24;
  fill: currentColor;
}

.hero-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.hero-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent);
}

.hero-author-info {
  text-align: center;
}

.hero-author-name {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-1);
}

.hero-author-role {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hero-cta {
  margin-top: var(--space-8);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Decorative elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.05;
  pointer-events: none;
}

.hero-decor-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.hero-decor-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}
