/* CRO Improvements for Services Page */

/* Hero urgency text */
.hero-urgency {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 1rem 0 1.5rem;
  color: #16a34a;
}

/* Trust Strip - Homepage Style */
.trust-strip {
  background: #f8f9fa;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 2.5rem;
  color: #009B4D;
  opacity: 0.85;
  margin-bottom: 0;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: #009B4D;
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
}

/* Steve CTA Sections */
.steve-cta-section,
.steve-cta-bottom {
  padding: 3rem 0;
}

.steve-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #dcfce7;
}

.steve-cta-content {
  flex: 1;
}

.steve-cta-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 600;
}

.steve-cta-content p {
  margin: 0 0 1.5rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.steve-cta-content .reassurance-text {
  margin: 1rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
  font-style: italic;
}

.steve-cta-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.steve-cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Tighten benefit copy */
.highlight-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.highlight-text {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-strip {
    padding: 2rem 0;
  }
  
  .trust-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-icon {
    font-size: 2rem;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
  
  .trust-label {
    font-size: 0.9rem;
  }
  
  .steve-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .steve-cta-content h3 {
    font-size: 1.25rem;
  }
  
  .steve-cta-content p {
    font-size: 0.95rem;
  }
  
  .steve-cta-avatar {
    width: 80px;
    height: 80px;
  }
  
  .hero-urgency {
    font-size: 1rem;
  }
}
