/* ========================================
   IMPROVEMENT 3: Social Proof Strip
   ======================================== */

.social-proof-strip {
  background: #f5f5f5;
  padding: 40px 20px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.social-proof-strip .container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

/* Left Column - Trustpilot Widget */
.social-proof-trustpilot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trustpilot-stars-large {
  color: #00b67a; /* Trustpilot green */
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.trustpilot-rating-text {
  font-size: 18px;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 4px;
}

.trustpilot-link {
  font-size: 14px;
  color: #1A365D;
  text-decoration: none;
  border-bottom: 1px solid #1A365D;
  transition: opacity 0.2s ease;
}

.trustpilot-link:hover {
  opacity: 0.7;
}

/* Center Column - Trust Badge */
.social-proof-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.trust-stat-text {
  font-size: 18px;
  font-weight: 600;
  color: #1A365D;
  margin-bottom: 8px;
  line-height: 1.4;
}

.trust-stars-row {
  color: #F59E0B; /* Amber/gold color */
  font-size: 24px;
  letter-spacing: 4px;
}

/* Right Column - Pull Quote */
.social-proof-quote {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.pull-quote-text {
  font-size: 16px;
  font-style: italic;
  color: #1A365D;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pull-quote-attribution {
  font-size: 14px;
  color: #4A5568;
  font-weight: 500;
}

/* ========================================
   RESPONSIVE: TABLET (768px and below)
   ======================================== */

@media (max-width: 768px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .social-proof-quote,
  .social-proof-trust {
    padding: 0;
  }
}

/* ========================================
   RESPONSIVE: MOBILE (480px and below)
   ======================================== */

@media (max-width: 480px) {
  .social-proof-strip {
    padding: 32px 16px;
  }
  
  .social-proof-grid {
    gap: 28px;
  }
  
  .trustpilot-stars-large {
    font-size: 24px;
  }
  
  .trustpilot-rating-text {
    font-size: 16px;
  }
  
  .trust-stat-text {
    font-size: 16px;
  }
  
  .trust-stars-row {
    font-size: 20px;
    letter-spacing: 3px;
  }
  
  .pull-quote-text {
    font-size: 15px;
  }
}
