/* =============================================
   TRIGADA AI — Trustpilot social-proof section
   Static responsive grid of verified reviews.
   ============================================= */
.tp-trust {
  background: var(--bg-base);
  padding: var(--space-16) var(--space-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tp-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tp-trust-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.tp-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 182, 122, 0.1);
  color: #00B67A;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}

.tp-trust-eyebrow svg { width: 14px; height: 14px; }

.tp-trust-title {
  color: var(--text-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.tp-trust-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #00B67A;
  color: #fff;
  font-size: 12px;
}

/* Card grid */
.tp-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 700px) {
  .tp-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .tp-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.tp-trust-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tp-trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.tp-trust-card-rating {
  display: inline-flex;
  gap: 2px;
}

.tp-trust-card-rating .tp-trust-star { width: 16px; height: 16px; font-size: 11px; }

.tp-trust-card-verified {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #00B67A;
  background: rgba(0, 182, 122, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.tp-trust-card-location {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.5rem;
  padding: 1px 5px;
  border: 1px solid var(--border);
  border-radius: 4px;
  vertical-align: middle;
}

.tp-trust-card-quote {
  color: var(--text-primary);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

.tp-trust-card-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

.tp-trust-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #4A1B0C;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tp-trust-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tp-trust-card-name {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.tp-trust-card-source {
  color: var(--text-muted);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tp-trust-card-source svg { width: 11px; height: 11px; }

/* Footer link to full Trustpilot page */
.tp-trust-footer {
  text-align: center;
  margin-top: var(--space-6);
}

.tp-trust-footer a {
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--text-muted);
  transition: color 200ms ease, border-color 200ms ease;
}

.tp-trust-footer a:hover {
  color: var(--text-secondary);
  border-color: var(--text-secondary);
}
