/*
Theme Name: EHP Lead Generation Landing Page
Description: A professional landing page for Employee Health Plan lead generation
Version: 1.0
Author: Your Company
*/

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background: #f8fafc;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #1e293b 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text .gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}

.badge .icon {
  width: 16px;
  height: 16px;
  color: #4ade80;
}

/* Lead Form */
.lead-form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  color: #1f2937;
}

.lead-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.lead-form p {
  text-align: center;
  color: #6b7280;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-security {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 16px;
}

.success-message,
.error-message {
  text-align: center;
  padding: 32px;
}

.success-message .icon,
.error-message .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.success-message .icon {
  color: #10b981;
}

.error-message .icon {
  color: #ef4444;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
}

.benefit-icon.green {
  background: linear-gradient(135deg, #4ade80, #3b82f6);
}

.benefit-icon.purple {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
}

.benefit-icon.orange {
  background: linear-gradient(135deg, #fb923c, #ef4444);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #6b7280;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 8px;
}

.benefit-list .icon {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Pain Points Section */
.pain-points {
  padding: 80px 0;
  background: white;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pain-card {
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid;
}

.pain-card.red {
  background: #fef2f2;
  border-color: #f87171;
}

.pain-card.orange {
  background: #fff7ed;
  border-color: #fb923c;
}

.pain-card.yellow {
  background: #fefce8;
  border-color: #eab308;
}

.pain-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.pain-card.red .icon {
  color: #ef4444;
}

.pain-card.orange .icon {
  color: #f97316;
}

.pain-card.yellow .icon {
  color: #eab308;
}

.pain-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.pain-card blockquote {
  font-style: italic;
  color: #374151;
}

.solution-cta {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.solution-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-cta p {
  font-size: 1.125rem;
  color: #bfdbfe;
  margin-bottom: 24px;
}

/* Cost Section */
.cost-section {
  padding: 80px 0;
  background: #1f2937;
  color: white;
  text-align: center;
}

.cost-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.cost-section > p {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 8px;
}

.stat p {
  color: #d1d5db;
}

.imagine-section {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
}

.imagine-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.imagine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.imagine-item h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

.imagine-item p {
  color: #a7f3d0;
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.testimonial {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.testimonial blockquote {
  color: #374151;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-avatar.blue {
  background: #3b82f6;
}

.author-avatar.purple {
  background: #8b5cf6;
}

.author-avatar.green {
  background: #10b981;
}

.author-info .name {
  font-weight: 600;
  color: #1f2937;
}

.author-info .title {
  font-size: 0.875rem;
  color: #6b7280;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  text-align: center;
}

.social-stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
}

.social-stat p {
  color: #6b7280;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.step p {
  color: #6b7280;
  margin-bottom: 24px;
}

.step-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #374151;
}

.step-feature .icon {
  width: 20px;
  height: 20px;
  color: #10b981;
}

/* Footer CTA */
.footer-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, #1f2937, #1e40af);
  color: white;
  text-align: center;
}

.footer-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-cta > p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #60a5fa;
}

.contact-link .icon {
  width: 20px;
  height: 20px;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .social-stats {
    flex-direction: column;
    gap: 32px;
  }
  
  .imagine-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .lead-form {
    padding: 24px;
  }
  
  .benefits,
  .pain-points,
  .social-proof,
  .how-it-works {
    padding: 60px 0;
  }
  
  .cost-section {
    padding: 60px 0;
  }
}