/* ── /testimonials showcase page styles ────────────────────────────────────
 * Reuses the class names from views/partials/testimonials.ejs and
 * public/css/enhancements.css (testimonials, testimonial-card, stars,
 * rating-badge) so re-styling either surface changes both. Adds a hero,
 * aggregate banner, and a 2/3-column page grid that collapses to a
 * single column on small screens.
 */

.testimonials-hero {
  background: linear-gradient(135deg, #090302 0%, #1a1410 100%);
  padding: 96px 48px;
  text-align: center;
  color: #fff;
}

.testimonials-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}

.testimonials-eyebrow {
  display: inline-block;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A9D01E;
  margin-bottom: 20px;
}

.testimonials-hero h1 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 24px 0;
  color: #fff;
}

.testimonials-hero-sub {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.testimonials-hero-sub .rating-badge {
  margin-right: 6px;
}

.testimonials-google-link {
  display: inline-block;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #A9D01E;
  text-decoration: none;
  border: 2px solid #A9D01E;
  padding: 12px 22px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.testimonials-google-link:hover {
  background: #A9D01E;
  color: #090302;
}

.testimonials-aggregate {
  background: #fff;
  padding: 28px 48px 0 48px;
  text-align: center;
}

.testimonials-aggregate .rating-badge {
  display: inline-block;
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.testimonial-quote {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #090302;
  margin: 0 0 18px 0;
}

.testimonial-case-study {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2e0db;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 13px;
  color: #6b6760;
}

.testimonial-service {
  background: #f4f1ec;
  color: #090302;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.testimonials-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #6b6760;
}

.testimonials-cta {
  background: #fff;
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid #e2e0db;
}

.testimonials-cta h2 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #090302;
  margin: 0 0 12px 0;
}

.testimonials-cta p {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 17px;
  color: #4a4742;
  margin: 0 0 28px 0;
}

.testimonials-cta .btn-primary {
  display: inline-block;
  margin-bottom: 28px;
}

.testimonials-google-footer {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 15px;
  color: #4a4742;
}

.testimonials-google-footer a {
  color: #A9D01E;
  font-weight: 700;
  text-decoration: none;
}

.testimonials-google-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .testimonials-hero {
    padding: 64px 24px;
  }
  .testimonials-hero h1 {
    font-size: 32px;
  }
  .testimonials-hero-sub {
    font-size: 16px;
  }
  .testimonials-aggregate,
  .testimonials-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 700px) {
  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }
}
