/* ========================================
   STYLES POUR LA NOUVELLE PAGE D'ACCUEIL OPTIMISÉE
   Basé sur les 10 sections recommandées
   ======================================== */

/* SECTION 2: SOCIAL PROOF - Statistiques */
.social-proof {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
  text-align: center;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color, #1f7a8c);
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
}

/* SECTION 3: PROBLEM - Icônes de problèmes */
.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* SECTION 4: BENEFITS - Avantages mesurables */
.benefits {
  background: #f9fafb;
}

.benefit-grid {
  gap: 2rem;
}

.benefit-card {
  position: relative;
  padding: 2rem;
  border-left: 4px solid var(--primary-color, #1f7a8c);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--primary-color, #1f7a8c);
  margin-bottom: 1rem;
}

/* SECTION 5: PRODUCT SHOWCASE - Captures d'écran */
.product-showcase {
  background: white;
  padding: 4rem 0;
}

.showcase-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.showcase-item {
  text-align: center;
}

.showcase-image {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: translateY(-5px);
}

.showcase-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.showcase-item p {
  color: #666;
  font-size: 0.95rem;
}

.placeholder-image {
  /* Temporaire - à remplacer par vraies images */
  min-height: 250px;
}

/* SECTION 7: TESTIMONIALS - Témoignages */
.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
}

.testimonials .eyebrow {
  color: rgba(255,255,255,0.8);
}

.testimonials h2 {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  color: #1a202c;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  flex-direction: column;
  display: flex;
  position: relative;

}

.testimonial-card .quote {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-style: italic;
  color: #2d3748;
}

.testimonial-card .quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color, #1f7a8c);
  opacity: 0.3;
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-card .quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color, #1f7a8c);
  opacity: 0.3;
  line-height: 2rem;
  display: block;
  margin-bottom: 0;
  text-align: right;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card .author strong {
  font-size: 1rem;
  color: #1a202c;
}

.testimonial-card .author span {
  font-size: 0.875rem;
  color: #666;
}

/* SECTION 9: PRICING TEASER */
.pricing-teaser {
  background: #f9fafb;
  padding: 4rem 0;
}

.pricing-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
  border-color: var(--primary-color, #1f7a8c);
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card.popular .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color, #1f7a8c);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #1f7a8c);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.pricing-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* SECTION 10: FAQ */
.faq {
  background: white;
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item[open] {
  background: white;
  border-color: var(--primary-color, #1f7a8c);
}

.faq-item summary {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a202c;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-color, #1f7a8c);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 1rem;
  color: #666;
  line-height: 1.6;
  padding-left: 0;
}

/* AMÉLIORATION DU HERO */
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hint {
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* AMÉLIORATION DU CTA FINAL */
.cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  border-radius: 20px;
  margin: 4rem auto;
}

.cta .eyebrow {
  color: rgba(255,255,255,0.9);
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta .hint {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-container {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-preview {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

