/* Reset et base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
h1,h2,h3 { font-weight: 700; }

/* Header */
header {
  background: linear-gradient(135deg, #ff6f61 0%, #ff8575 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 111, 97, 0.2);
}
header h1 { font-size: 3rem; margin-bottom: 15px; }
header p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.cta-btn {
  margin-top: 30px;
  background: white;
  color: #ff6f61;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-btn:hover { 
  background: #ffe3dc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Section services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 80px 20px;
  background: white;
}
.service-card {
  background: white;
  border-radius: 15px;
  flex: 1 1 280px;
  max-width: 300px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 111, 97, 0.2);
}
.service-card h3 { margin-bottom: 15px; color: #ff6f61; font-size: 1.3rem; }
.service-card p { font-size: 0.95rem; color: #666; }

/* Section formules (pricing) */
.pricing {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
  text-align: center;
}
.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  background: linear-gradient(135deg, #ff6f61 0%, #ff8575 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1 1 320px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6f61 0%, #ff8575 100%);
}
.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 111, 97, 0.25);
  border-color: #ff6f61;
}
.pricing-card.featured {
  transform: scale(1.08);
}
.pricing-card.featured:hover {
  transform: translateY(-15px) scale(1.1);
}
.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}
.pricing-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 0.6s ease-in-out;
}
.pricing-card:hover .emoji {
  animation: bounce 0.6s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.pricing-card ul {
  list-style: none;
  margin: 35px 0;
  text-align: left;
  flex: 1;
}
.pricing-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: 0.95rem;
  transition: 0.2s;
}
.pricing-card ul li:last-child {
  border-bottom: none;
}
.pricing-card:hover ul li {
  color: #333;
}
.pricing-card ul li:before {
  content: "✓ ";
  color: #ff6f61;
  font-weight: 700;
  margin-right: 10px;
  font-size: 1.1rem;
}

.pricing-card {
  cursor: pointer;
}

.pricing-card.selected {
  border: 3px solid #ff6f61 !important;
  background: linear-gradient(135deg, #fff5f3 0%, #fff 100%) !important;
  box-shadow: 0 25px 50px rgba(255, 111, 97, 0.3) !important;
}

.pricing-card.selected::after {
  content: "✓ SÉLECTIONNÉ";
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6f61;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.pricing-card .btn {
  background: linear-gradient(135deg, #ff6f61 0%, #ff8575 100%);
  color: white;
  padding: 16px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 25px;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255, 111, 97, 0.2);
}
.pricing-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 111, 97, 0.35);
  letter-spacing: 0.5px;
}

/* Pricing Footer */
.pricing-footer {
  background: white;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #f0f0f0;
  margin: 0 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
}
.pricing-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}
.pricing-footer .emoji-large {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.pricing-footer p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}
.pricing-footer .highlight {
  color: #ff6f61;
  font-weight: 600;
}

/* Section contact */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: white;
}
.contact h2 { 
  margin-bottom: 30px; 
  font-size: 2rem;
  background: linear-gradient(135deg, #ff6f61 0%, #ff8575 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin: 0 auto;
  gap: 20px;
}
.contact input, .contact textarea {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.contact input:focus, .contact textarea:focus {
  border-color: #ff6f61;
  box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}
.contact button {
  background: linear-gradient(135deg, #ff6f61 0%, #ff8575 100%);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 111, 97, 0.2);
}
.contact button:hover { 
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 111, 97, 0.35);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  color: white;
  font-size: 0.95rem;
}

/* Animation fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: 1s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media(max-width: 768px){
  .services { flex-direction: column; align-items: center; }
  .pricing-container { flex-direction: column; align-items: center; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-15px) scale(1.02); }
  header h1 { font-size: 2rem; }
  .pricing h2 { font-size: 2rem; }
}