/* ========================================
   SECTION SIMULATEUR - BANDEROLE
   ======================================== */

.simulator {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.simulator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='9' cy='9' r='1'/%3E%3Ccircle cx='49' cy='49' r='1'/%3E%3Ccircle cx='29' cy='29' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.simulator-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.simulator h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.simulator p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.simulator-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.simulator-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.simulator-feature::before {
  content: "✨";
  font-size: 1.2rem;
}

.btn-simulator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-simulator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-simulator:hover::before {
  left: 100%;
}

.btn-simulator:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-simulator::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-simulator:hover::after {
  transform: translateX(5px);
}

.simulator-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.simulator-stat {
  text-align: center;
  color: white;
}

.simulator-stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.simulator-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animation pour attirer l'attention */
@keyframes pulse {
  0% {
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
  }
  100% {
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
  }
}

.btn-simulator {
  animation: pulse 2s infinite;
}

/* ========================================
   SECTION PRICING - TARIFS
   ======================================== */

.pricing {
  background-color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 20px;
}

.price-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 25px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  text-align: center;
}

.price-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 15px 0;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-content {
  padding: 25px;
  flex-grow: 1;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
}

.price-features li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: #7f8c8d;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

.price-footer {
  padding: 0 25px 25px;
  text-align: center;
}

.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e74c3c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(5deg);
}

.contact-info {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.btn-contact {
  margin-top: 20px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  /* Simulateur responsive */
  .simulator {
    padding: 3rem 1.5rem;
    margin: 1rem;
    border-radius: 10px;
  }

  .simulator h2 {
    font-size: 2rem;
  }

  .simulator p {
    font-size: 1.1rem;
  }

  .simulator-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .simulator-stats {
    gap: 2rem;
  }

  .simulator-stat-number {
    font-size: 1.5rem;
  }

  .btn-simulator {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  /* Pricing responsive */
  .pricing-grid {
    grid-template-columns: 1fr;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .simulator-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
