  body { font-family: 'Cairo', sans-serif; background: #f1fff9; margin:0; padding:0; }
    .lang-switch { position: fixed; top: 20px; right: 20px; }
    .lang-switch button { margin-left: 0.5rem; }
    header { background-image: linear-gradient(0deg, #f1fff9, #f1fff900 30%), radial-gradient(circle at 0 0, #5fd5b6 0, #5fd5b600 30%), linear-gradient(180deg, #79dfffb3 -10%, #79dfff00 70%), radial-gradient(circle at 95% 0, #d0f224 0, #5fd5b600 20%);
	padding: 3rem 1rem; text-align: center; position: relative; }
    header h1 { font-size: 2.75rem; margin-bottom: 1rem; color: #333; }
    header p { font-size: 1.25rem; margin-bottom: 1.5rem; color: #555; }
    .btn-primary { background: #333; color: #ffc107; border: none; padding: 0.75rem 1.5rem; font-weight: 700; }
    .features, .plans, .testimonials, .faq { padding: 3rem 1rem; }
    // .feature-box { background: #fff; border-radius: 8px; padding: 1.5rem; box-shadow: 0 4px 8px rgba(0,0,0,0.05); margin-bottom: 1rem; }
    // .feature-box h3 { color: #00203c; }
    .pricing-slider { text-align: center; margin-top: 2rem; }
    /* Improved slider styling */
    .pricing-slider input[type=range] {
      -webkit-appearance: none;
      width: 80%; height: 8px;
      background: linear-gradient(90deg, #ffc107 0%, #e0a800 100%);
      border-radius: 4px;
      outline: none;
      margin: 0 auto;
    }
    .pricing-slider input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 24px; height: 24px;
      background: #333;
      border: 4px solid #ffc107;
      border-radius: 50%;
      cursor: pointer;
      transition: transform 0.2s ease;
      margin-top: -8px;
    }
    .pricing-slider input[type=range]:active::-webkit-slider-thumb {
      transform: scale(1.2);
    }
    .pricing-text { margin-top: 1rem; font-size: 1.2rem; font-weight: bold; color: #333; }
    .testimonial { font-style: italic; margin-bottom: 1rem; }
    .testimonial strong { display: block; margin-top: 0.5rem; text-align: right; }
    .faq-item { margin-bottom: 1rem; }
    footer { background: #333; color: #fff; text-align: center; padding: 2rem 1rem; }
	#signup-bonus h2,
#signup-bonus p {
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

#signup-form input,
#signup-form select {
  background-color: #f9f9f9;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease-in-out;
}

#signup-form input:focus,
#signup-form select:focus {
  border-color: #00ab41;
  box-shadow: 0 0 0 0.25rem rgba(0, 171, 65, 0.2);
}

.btn-success {
  background-color: #00ab41;
  border-color: #00ab41;
}

.btn-success:hover {
  background-color: #008d37;
  border-color: #008d37;
}
/* Conteneur principal des témoignages */
.testimonials {
  padding: 60px 0;
  background-color: #f1fff9;
}

/* Titre des témoignages */
.testimonials h2 {
  font-size: 36px;
  font-weight: 600;
  color: #329c24; /* Correspond à la couleur de ton site */
  margin-bottom: 40px;
}
 


#testimonials-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  background-color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  width: 280px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  border: solid 4px #ffffff;
}

.testimonial:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #329c24;
  margin-bottom: 15px;
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
  color: #ffffff;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  color: #f6eec5;
  font-weight: bold;
}

.stars {
  margin-top: 10px;
  color: #f8c307;
}

.stars i {
  font-size: 18px;
  margin: 0 2px;
}

/* Animation flottante */
.float-card {
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(0.5deg); }
  50% { transform: translateY(3px) rotate(-0.5deg); }
  75% { transform: translateY(-3px) rotate(0.3deg); }
}

.testimonial {
  width: 280px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: flex-end;
  position: relative;
  color: white;
}

/* Effet reflet / overlay dégradé */
.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  backdrop-filter: blur(2px);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  padding: 15px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 10px;
}
  
/* Style général de la section FAQ */
.faq {
  background-color: #f1fff9;
  border-radius: 8px;
}

.faq h2 {
  font-size: 36px;
  font-weight: 500;
  // color: #f7cf44;
  margin-bottom: 30px;
}

.faq-item {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  color: #555;
  display: none; /* Cacher les réponses par défaut */
  padding-left: 20px;
  line-height: 1.6;
}

.faq-item:hover {
  // background-color: #f1f1f1;
  transform: translateY(-5px);
}

.faq-item.active p {
  display: block; /* Afficher la réponse quand la question est active */
}

.faq-item.active h4 {
  color: #dfae00;
  font-weight: 600;
}

/* Responsiveness */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 28px;
  }

  .faq-item h4 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }
}

  .feature-img {
    border-radius: 1rem;
    // box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
	// background:white;
  }
  .feature-img:hover {
    transform: scale(1.03);
  }
  .featuresecrans h3 {
        color: #e0a800;
  }
  .featuresecrans p {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .menu-fab {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #ffc107;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-fab:hover {
  background-color: #e0ac06;
}

.menu-panel {
  position: fixed;
  bottom: 100px;
  left: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.menu-panel a {
  padding: 14px 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.menu-panel a:last-child {
  border-bottom: none;
}

.menu-panel a:hover {
  background-color: #f9f9f9;
}

.menu-panel a.important {
  background: #ffc107;
  color: white;
}

.menu-panel.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[dir="rtl"] .menu-panel {
  right: auto;
  left: 30px;
}

[dir="rtl"] .menu-fab {
  right: auto;
  left: 30px;
}
header {
  /* height: 100vh;  <-- on enlève */
  min-height: 100vh; /* option pour au moins 100vh, mais grandit si plus de contenu */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #f1fff9;
  padding: 2rem; /* pour ajouter de l'espace si besoin */
}


/* Couche 1 : dégradé Shopify en mouvement */
.bg-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #5fd5b6, transparent 40%),
              radial-gradient(circle at 80% 20%, #d0f224, transparent 30%),
              radial-gradient(circle at 50% 80%, #79dfff, transparent 40%);
  background-size: 200% 200%;
  animation: gradientMove 12s ease-in-out infinite;
  z-index: 0;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Couche 2 : particules */
.particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 3px);
  background-size: 60px 60px;
  animation: particlesFloat 25s linear infinite;
  z-index: 1;
}

@keyframes particlesFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50px, -50px); }
}

/* Effet parallax dynamique */
header.parallax {
  perspective: 1000px;
}
header.parallax .layer {
  transform-style: preserve-3d;
}

/* Mascotte */
.mascotte-image {
  max-width: 170px;
  position: relative;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.4s ease;
  // filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.25));
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.mascotte-image:hover {
  transform: scale(1.15) rotate(3deg);
}

#hero-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #000;
  position: relative;
  overflow: hidden;
  background: #000; /* fond noir pour bien voir l'effet */
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
}

#hero-title::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}



#hero-sub {
  font-size: 1.2rem;
  color: rgb(98 98 98);
  animation: fadeInUp 1.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  z-index: 3;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Bouton CTA */
#cta-btn {
  background-color: #ffc107;
  color: black;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 28px;
  margin-top: 20px;
  font-size: 1.05rem;
  border: solid 2px white;
  z-index: 3;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
  animation: glowPulse 1.5s infinite alternate;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none; /* supprime soulignement */
}
/* Bouton CTA */
.thaww-btn {
  background-color: #ffc107;
  color: black;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 28px; 
  font-size: 1.05rem;
  border: solid 2px white;
  z-index: 3;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
  animation: glowPulse 1.5s infinite alternate;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none; /* supprime soulignement */
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 15px rgba(255, 193, 7, 0.6); }
  100% { box-shadow: 0 0 35px rgba(255, 193, 7, 1); }
}

/* Reflet doux */
#cta-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.25) 0%,
    transparent 60%
  );
  transform: rotate(25deg);
  animation: btnShine 4s infinite;
}

@keyframes btnShine {
  0% { transform: translateX(-200%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}

#cta-btn:hover {
  transform: scale(1.08);
}

.cursor-click {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Pointing_hand_cursor_vector.svg/1280px-Pointing_hand_cursor_vector.svg.png') no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: cursorClickAnim 1.5s ease-in-out infinite;
  z-index: 999999999999999 !important;
  opacity: 0; /* pour gérer l'apparition via l'animation */
  left: 70%; /* ajuste selon bouton */
  top: 30%; /* ajuste selon bouton */
}

@keyframes cursorClickAnim {
  0% { opacity: 0; transform: scale(0.5) translate(0,0); }
  10% { opacity: 1; transform: scale(1.2) translate(0,0); }
  30% { transform: scale(1) translate(10px, 10px); }
  60% { transform: scale(1) translate(0,0); }
  80% { transform: scale(0.9); }
  100% { opacity: 0; transform: scale(0.9); }
}

.specialtext {
  font-size: 2.6rem;
  font-weight: bold;
  color: #000;
  position: relative;
  overflow: hidden;
  background: #000; /* fond noir pour bien voir l'effet */
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
}

.specialtext::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
  pointer-events: none;
}
.feature-box {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid #e0dccf;
}

.feature-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-icon-wrapper {
  background-color: #ffc107;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
}

.feature-icon-wrapper:hover {
  background-color: #9deaf2;
  box-shadow: 0 0 25px rgb(216 251 255);;
}

.feature-icon {
  font-size: 36px;
  color: #fff;
}

.feature-box h3 {
  color: #00203c;
  font-weight: 700;
}

.feature-box p {
  color: #444;
  font-size: 0.95rem;
  min-height: 60px;
}

.btn-cta {
  background-color: #ffc107;
  border: none;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: center;
  margin-top: auto;
}

.btn-cta:hover {
  background-color:#8fc1c6;
}
.g-recaptcha {
			  border: 2px solid #ffc107;
			  border-radius: 10px;
			  display: inline-block;
			}
		.input-error {
			border: 2px solid #dc3545 !important; /* rouge vif */
			background-color: #f8d7da; /* léger fond rouge */
		}
			/* Animation dégradé doux et élégant */
			@keyframes gradientMove {
			  0% {
				background-position: 0% 50%;
			  }
			  50% {
				background-position: 100% 50%;
			  }
			  100% {
				background-position: 0% 50%;
			  }
			}

			#signup-form {
				border: solid 4px #ffc107cc !important; /* jaune semi-transparent */
				border-radius: 12px;
				background: radial-gradient(circle at 20% 30%, #fff8e1, transparent 40%),  /* blanc cassé */
							radial-gradient(circle at 80% 20%, #ffca28cc, transparent 30%), /* jaune plus doux */
							radial-gradient(circle at 50% 80%, #ffa00066, transparent 40%); /* orange doux */
				background-size: 200% 200%;
				animation: gradientMove 15s ease-in-out infinite;
				padding: 20px;
}
#label-btnnnn {
  position: relative;
  background: linear-gradient(45deg, #ffb300, #ffc107, #ffd54f);
  background-size: 300% 300%;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
  animation: btnGradientMove 4s ease infinite, btnPulse 2s ease-in-out infinite;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Déplacement du dégradé */
@keyframes btnGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Effet lumière/reflet */
#label-btnnnn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: rotate(25deg);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { transform: translateX(-200%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}

/* Léger effet “respiration” */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 193, 7, 0.6); }
  50% { box-shadow: 0 0 35px rgba(255, 193, 7, 0.9); }
}

/* Survol */
#label-btnnnn:hover {
  transform: scale(1.07);
}

 