/* ========================================
    TESTIMONIALS 1 - CARDS GRID
    ======================================== */
.testi-1 {
  padding: 100px 5%;
  background: var(--white);
}
.testi-1 .header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.testi-1 .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.testi-1 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
}
.testi-1 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-1 .card {
  background: var(--off-white);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}
.testi-1 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.testi-1 .card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--secondary);
  line-height: 1;
}
.testi-1 .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-1 .stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}
.testi-1 .card p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testi-1 .author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-1 .author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.testi-1 .author-info .name {
  font-weight: 700;
  color: var(--black);
}
.testi-1 .author-info .location {
  font-size: 0.85rem;
  color: var(--gray-dark);
}
@media (max-width: 1024px) {
  .testi-1 .grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}
