/* =========================
   RESET & GLOBAL
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.logo img {
  height: 38px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #1e88e5;
}

/* CTA */
.cta {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #1e88e5, #00c853);
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30,136,229,0.35);
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 35px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-buttons .btn {
  padding: 12px 30px;
  border-radius: 30px;
  margin: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
}

.primary {
  background: linear-gradient(90deg, #1e88e5, #00c853);
  color: #ffffff;
}

.primary:hover {
  box-shadow: 0 15px 35px rgba(30,136,229,0.35);
  transform: translateY(-2px);
}

.secondary {
  border: 2px solid #1e88e5;
  color: #1e88e5;
}

.secondary:hover {
  background: #1e88e5;
  color: #ffffff;
}

/* =========================
   PROMO BANNER
========================= */
.promo {
  padding: 60px 20px;
  text-align: center;
  background: #cedace;
}

.promo img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* =========================
   SECTIONS BASE
========================= */
.cards,
.steps,
.why,
.testimonials,
.faq {
  padding: 80px 60px;
  text-align: center;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* =========================
   GRIDS
========================= */
.card-grid,
.step-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* =========================
   CARDS (GIFTS)
========================= */
.card {
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform .3s ease;
}

.card span {
  font-weight: 600;
  color: #1e88e5;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(30,136,229,0.15);
}

.card:hover img {
  transform: scale(1.05);
}

/* =========================
   STEPS
========================= */
.step {
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

/* =========================
   WHY SECTION
========================= */
.why {
  background: #f9fbff;
}

.why-card {
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial {
  padding: 35px 30px;
  border-radius: 18px;
  background: #f9fbff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: all .3s ease;
  text-align: center;
}


.testimonial img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #1e88e5;
}

.testimonial strong {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.testimonial span {
  font-size: 13px;
  color: #1e88e5;
}



/* =========================
   FAQ
========================= */
.faq {
  background: #f5f9ff;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 22px;
  transition: transform .3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* =========================
   SCROLL ANIMATION
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 40px 20px;
  text-align: center;
  background: #f5f5f5;
}

footer p {
  margin: 0;
  font-weight: 500;
}

footer small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .cards,
  .steps,
  .why,
  .testimonials,
  .faq {
    padding: 60px 25px;
  }
}
/* =========================
   SLIDER BANNER
========================= */
.slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.slide.active {
  opacity: 1;
  position: relative;
}
/* =========================
   SLIDER BORDER ANIMATION
========================= */
.slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 6px; /* espace pour la bordure */
  border-radius: 26px;
  background: linear-gradient(
    90deg,
    #1e88e5,
    #00c853,
    #1e88e5
  );
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.slide img {
  width: 100%;
  border-radius: 20px;
  background: #ffffff;
}
.slider.pulse {
  animation: pulseBorder 0.6s ease;
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 rgba(30,136,229,0.8);
  }
  100% {
    box-shadow: 0 0 25px rgba(0,200,83,0.6);
  }
}
/* =========================
   VERIFY PRO DESIGN
========================= */

.verify-pro {
  padding: 100px 20px;
  background: linear-gradient(135deg,#e3f2fd,#e8f5e9);
}

.verify-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.verify-info h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.verify-info p {
  color: #555;
  margin-bottom: 25px;
}

.verify-info ul {
  list-style: none;
  padding: 0;
}

.verify-info li {
  margin-bottom: 12px;
  font-size: 15px;
}

.verify-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.verify-card h2 {
  margin-bottom: 20px;
  text-align: center;
}

.verify-card form {
  display: flex;
  flex-direction: column;
}

.verify-card label {
  margin-top: 14px;
  font-weight: 600;
}

.verify-card input,
.verify-card select,
.verify-card textarea {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.verify-card textarea {
  min-height: 90px;
}

.verify-card .cta.full {
  margin-top: 22px;
}

.secure-note {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #555;
}

/* MOBILE */
@media (max-width: 900px) {
  .verify-container {
    grid-template-columns: 1fr;
  }

  .verify-info {
    text-align: center;
  }
}
/* =========================
   MULTI CODE INPUTS (FINAL)
========================= */
.code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.code-row input {
  flex: 1;
}

.remove-code {
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  transition: all .2s ease;
}

.remove-code:hover {
  background: #fee2e2;
  color: #dc2626;
}

.add-code {
  margin-top: 10px;
  background: none;
  border: none;
  color: #4594da;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.add-code:hover {
  text-decoration: underline;
}
/* =========================
   LOADER OVERLAY
========================= */
#loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(243,246,251,0.85);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-box {
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.loader-box p {
  margin-top: 14px;
  font-size: 14px;
  color: #374151;
}

/* Spinner */
.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #1e88e5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* =========================
   HERO MOBILE FIX
========================= */
@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}







