/* Custom styles for customers page */

/* Override body font for customers page with a modern, readable font */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-feature-settings: 'liga', 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure all text elements use Inter font for consistent, modern typography */
p, span, div, li, td, th, label, input, textarea, select, h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.customers-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-light);
  padding: 150px 0 60px; /* Reduced from 160px/80px to 120px/60px */
  text-align: center;
}

.customers-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px; /* Reduced from 24px */
  font-family: 'Inter', sans-serif;
  line-height: 1.2; /* Added for better text spacing */
}

.customers-hero p {
  font-size: 20px;
  margin-bottom: 28px; /* Reduced from 32px */
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.value-props {
  padding: 60px 0; /* Reduced from 80px */
  background-color: var(--bg-light);
}

.value-props p {
  font-family: 'Inter', sans-serif;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px; /* Reduced from 40px */
  margin-top: 48px; /* Reduced from 60px */
}

.value-prop-card {
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px; /* Reduced from 40px */
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px; /* Reduced from 500px */
}

.value-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.value-prop-number {
  font-size: 42px; /* Reduced from 48px */
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 14px; /* Reduced from 16px */
  font-family: 'Inter', sans-serif;
}

.value-prop-card h3 {
  font-size: 22px; /* Reduced from 24px */
  font-weight: 600; /* Changed from 700 to 600 for better readability */
  margin-bottom: 18px; /* Reduced from 20px */
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.value-prop-card p {
  color: var(--text-secondary);
  margin-bottom: 20px; /* Reduced from 24px */
  line-height: 1.6;
  font-size: 15px; /* Added explicit size */
}

.value-prop-stats {
  background: var(--bg-gray);
  border-radius: var(--radius-md);
  padding: 16px; /* Reduced from 20px */
  margin-top: auto;
}

.value-prop-stats p {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px; /* Added explicit size */
  line-height: 1.5;
}

.demo-section {
  padding: 60px 0; /* Reduced from 80px */
  background: var(--bg-gray);
}

.demo-section h2 {
  text-align: center;
  font-size: 36px; /* Reduced from 40px */
  font-weight: 600; /* Changed from 700 */
  margin-bottom: 20px; /* Reduced from 24px */
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.demo-section p {
  text-align: center;
  font-size: 17px; /* Reduced from 18px */
  color: var(--text-secondary);
  margin-bottom: 48px; /* Reduced from 60px */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.hf-embed-container {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1000px;
}

.hf-embed-container iframe {
  width: 100%;
  min-height: 900px; /* Reduced from 1200px */
  border: none;
}

.contact-cta {
  padding: 60px 0; /* Reduced from 80px */
  background: var(--primary-dark);
  color: var(--text-light);
  text-align: center;
}

.contact-cta h2 {
  font-size: 32px; /* Reduced from 36px */
  font-weight: 600; /* Changed from 700 */
  margin-bottom: 20px; /* Reduced from 24px */
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.contact-cta p {
  font-size: 17px; /* Reduced from 18px */
  margin-bottom: 28px; /* Reduced from 32px */
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-light);
  padding: 14px 28px; /* Slightly reduced from 16px 32px */
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px; /* Added explicit size */
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  background: #4bb377;
  transform: translateY(-2px);
  color: var(--text-light);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .customers-hero {
    padding: 100px 0 50px; /* Reduced mobile padding */
  }
  
  .customers-hero h1 {
    font-size: 32px; /* Reduced from 36px */
    line-height: 1.2;
  }
  
  .value-props {
    padding: 50px 0; /* Reduced mobile padding */
  }
  
  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 24px; /* Reduced from 30px */
  }
  
  .value-prop-card {
    padding: 24px; /* Reduced from 30px */
    min-height: 380px; /* Reduced mobile card height */
  }
  
  .demo-section {
    padding: 50px 0; /* Reduced mobile padding */
  }
  
  .demo-section h2 {
    font-size: 28px; /* Reduced from 32px */
  }
  
  .hf-embed-container iframe {
    min-height: 800px; /* Reduced from 1000px */
  }
  
  .contact-cta {
    padding: 50px 0; /* Reduced mobile padding */
  }
}