
  /* =============================================
     SOCIAL PROOF — Section 5
     CIALDINI: Social Proof — testimonials from "ordinary people"
     CIALDINI: Authority — mention of professional background
     CIALDINI: Liking — relatable, everyday language
     NOTE: Rating kept at 4.6 stars, not 5.0 (builds trust per Cialdini)
  ============================================= */
  .testimonials {
    background: var(--forest);
    padding: 7rem 8vw;
  }

  .testimonials .section-headline { color: var(--ivory); }
  .testimonials .section-headline em { color: var(--sage-light); }

  .testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* CIALDINI: Social Proof aggregate — "X people helped" */
  .rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .rating-big {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .rating-detail { display: flex; flex-direction: column; gap: 0.3rem; }

  .stars { display: flex; gap: 3px; }

  .star { width: 14px; height: 14px; color: var(--gold); }

  .rating-count {
    font-size: 0.78rem;
    color: var(--sage-light);
    letter-spacing: 0.05em;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .testimonial-card {
    background: rgba(247,243,236,0.06);
    border: 1px solid rgba(200,217,196,0.15);
    border-radius: 4px;
    padding: 1.8rem;
    transition: background 0.2s;
  }

  .testimonial-card:hover { background: rgba(247,243,236,0.1); }

  .testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }

  .testimonial-stars .star-fill { color: var(--gold); font-size: 12px; }

  .testimonial-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

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

  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--forest);
    flex-shrink: 0;
  }

  .author-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ivory);
  }

  /* CIALDINI: Authority — "verified buyer" increases credibility */
  .author-meta {
    font-size: 0.72rem;
    color: var(--sage-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .verified-badge {
    background: rgba(200,217,196,0.2);
    color: var(--sage-light);
    font-size: 0.65rem;
    padding: 0.1rem 0.5rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
  }