:root{
    --yellow:#ffd60a;
    --white:#ffffff;
    --black:#000000;
    --surface:#0f0f0f;     
    --gray:#bfbfbf;
    --border:#1f1f1f;
    --error:  #ff7070;
    --valide: #44cc44;
  }

  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }

  
  .yellow{
    color:var(--yellow);
  }
  body {
  font-family:'Inter',sans-serif;
  background:var(--black) url("SL-043021-42650-13.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:var(--white);
  animation: simpleFade 0.5s;
}

@keyframes simpleFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
  /* ── NAV ── */
header{
  position: sticky;
  top:0;
  width:100%;
  padding:10px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:100;
  background:var(--black);        
  border-bottom:1px solid var(--yellow); 
}

.logo{
  width : 85px;
  height : 85px;
}

.logo img{
  height : 100%;
  width : 100%;
}
#nav_1{margin-right : 5px}
#nav_1 a{
  color:var(--gray);
  font-size:14px;
  font-weight:500;
  text-decoration: none;
  margin-left:80px;
  position:relative;
  transition:color .3s;
  }

#nav_1 a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--yellow);
  transition:width .3s ease;
}
  #nav_1 a:hover{color:var(--yellow);}
  #nav_1 a:hover::after{width:100%;}

  #nav-2 {
      display: flex;
      justify-content: flex-end; 
      align-items: center;
      padding: 10px 40px;
      background-color:var(--black) 
  }

  #nav-2 .social {
      display: flex;
      gap: 12px;
  }

  #nav-2 > a {
      width: 32px;
      height: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--white);
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
      transition: 0.3s ease;
  }

.fb ,.ig,.x{ background-color: var(--yellow); }
.fb:hover { background-color: #145dbf; }
.ig:hover { background-color: #dd2a7b; }
.x:hover { background-color: #333; }

  /* ── SHARED ── */
.wrap{max-width:1100px;
  margin:0 auto;
  padding:0 60px;
}

.pt{padding-top:120px;}

.label{
  font-size:12px;
  letter-spacing:2px;
  color:var(--yellow);
  margin-bottom:16px;
}

h1{
  font-size:clamp(36px,5vw,64px);
  font-weight:800;
  line-height:1;
  transition:transform .4s ease,opacity .4s ease;
}

h2{
  font-size:clamp(28px,4vw,44px);
  font-weight:700;
  line-height:1.15;
  transition:transform .4s ease,opacity .4s ease;
}

.sub{
 font-size:16px;
  color:var(--gray);
  line-height:1.7;
  max-width:500px;
  margin-top:16px;
  transition :opacity .4s ease;
}

  /* ── BUTTONS ── */
.btn{
  display :inline-block;
  padding:13px 28px;
  background:var(--yellow);
  color:var(--black);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:1px solid var(--yellow);
  border-radius:50px;
  cursor:pointer;  /*pointeur curseur*/
  transition:background .3s ease, color .3s ease, transform .2s ease;
}

.btn:hover{
  background:var(--black);
  color:var(--yellow);
  transform:translateY(-3px);
}

.btn-ghost{
  background: transparent;
  border:1px solid var(--white);
  color:var(--white);
  margin-left:12px;
  border-radius: 50px;
  transition:background .3s ease, color .3s ease, transform .2s ease;
}

.btn-ghost:hover{
  background:var(--white);
  color:var(--black);
  transform:translateY(-3px);
}

  /* ── DIVIDER ── */
  hr{
    border:none;
    border-top:1px solid var(--border);
    margin:80px 0;
    transition:opacity .3s;
  }


  /* ── SERVICES ── */
#services .s-container {
  padding-top: 50px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;              
    gap: 20px;
    width: 95%;                          
    margin: 0 auto;                       
    background: #111100; 
    padding: 20px;
    border-radius: 16px;
}

.svc {
    background: var(--border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    color: var(--white); 
    border: 1px solid #ffd60a40;
}

.svc:hover {
  background: var(--yellow);  
  color: var(--black);        
  transform: translateY(-5px);
}

.svc:hover h3,.svc:hover p,.svc:hover .svc-num { 
  color: inherit;
}

.top-svc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  }

.svc-num {
  font-size: 18px;
  letter-spacing: 2px;
  background-color:#ffd60a40;
  border-radius:4px;
  color: var(--yellow);
  font-weight: 600;
  transition: color 0.3s ease;
}

.svc:nth-child(5) .top-svc::after {
  font-size: 14px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.svc:nth-child(6) .top-svc::after {
  font-size: 14px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.svc-title h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
  transition: color 0.3s ease;
}

.svc p {
  font-size: 14px;
  padding: 0px 0px;
  color: var(--white);
  line-height: 2;
  transition: color 0.3s ease;
}

  /* ── SHOP ── */
.forms {
  margin: 40px 0 60px;
  padding: 30px;
  background: var(--black);
  border: 1.5px solid rgba(255, 214, 10, 0.15);
  border-radius: 16px;
}
.forms:hover{
  border-color: var(--yellow);
  transform: translateY(-5px);
}
.forms-grid {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form {
  background: var(--black);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 214, 10, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.form:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255, 214, 10, 0.12);
  border-color: rgba(255, 214, 10, 0.3);
}

.form-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--white);
}

.form h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #111; 
  border: 1px solid var(--yellow);  
  border-radius: 6px;
  color: var(--yellow);  
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.form select option {
  background: #111;  
  color: var(--yellow);  
  padding: 10px;
}

.form select option:hover {
  background: var(--yellow);  
  color: var(--black);  
}
.form input,.form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.form input:focus,.form select:focus {
  border-color: var(--yellow);
  outline: none;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 5px;
}

#btn__for {
  width: 100% ;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
#shop .sh-container{padding:120px 0 60px;}
.prod-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-bottom:0;
}
.prod-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  transition:background .2s, transform .2s;
  overflow:hidden;
}
.prod-card:hover{
  background:#2e2e2e;
  transform:translateY(-4px);
}
.prod-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
  border-radius:16px 16px 0 0;
}
.prod-card:hover img {
  transform: scale(1.04);
  filter:saturate(120%);
  opacity: 0.9;
}

.prod-info{padding:18px;}
.prod-info h3{
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
}
.prod-info p{
  font-size:13px;
  color:var(--gray);
  line-height:1.6;
  margin-bottom:14px;
}
.prod-info .price{
  font-size:18px;
  font-weight:700;
  margin-bottom:14px;
}
.prod-info .price span{
  font-size:12px;
  color:var(--gray);
  font-weight:400;
}
#add-btn{
    width:100%;
    padding:10px;
  }
.prod-top{
  margin: 40px 0;
  padding: 25px;
  background: #111;
  border: 1px solid var(--yellow);
  border-radius: 12px;
  overflow-x: auto;
}
.prod-top-title {
  color: var(--yellow);
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prod-top-title i {
  color: var(--yellow);
  font-size: 24px;
}

.prod-top-table, #product-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black);
  border: 1px solid var(--yellow);
  border-radius: 8px;
  overflow: hidden;
  min-width: 600px;
}

.prod-top-table th, #product-table th {
  background: var(--yellow);
  color: var(--black);
  padding: 12px;
  font-size: 14px;
  text-align: left;
}
.prod-top-table th i, #product-table i {
  margin-right: 6px;
  color: var(--black);
  }

.prod-top-table td, #product-tbody td{
  padding: 12px;
  color: var(--white);
  border-bottom: 1px solid #333;
}
.prod-top-table td i {
  margin-right: 6px;
  color: var(--yellow);
}

.prod-top-row-1 ,.prod-top-row-2 ,.prod-top-row-3{ background: var(--black);} 

.rank-1 i { color: #FFD700; }
.rank-2 i { color: #C0C0C0; }
.rank-3 i { color: #CD7F32; }

.product-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-cell img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--yellow);
    object-fit: cover;
  }

.product-cell span { color: var(--white); }

.revenue {
  color: #4CAF50 !important;
  font-weight: 600;
}

.revenue i { 
  color: #4CAF50 !important;
}
.rating i {
  color: var(--yellow);
  font-size: 12px;
  margin-right: 2px;
}

.prod-top-table tr:hover, #product-tbody tr { 
  background: var(--border);
}
.prod-top-table tr, #product-tbody tr:hover td {
  border-color: var(--yellow);
}

.prod-info {
  background-color: var(--surface);
  color : var(--gray);
}

  /* ── FAQ ── */


  /* ── ABOUT ── */
.about {
  padding: 80px 24px 100px;
  font-family: 'Inter', sans-serif;
  max-width: 1100px;
  margin: 0 auto;
}

.about-container {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.about-container h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-top: 12px;
}
.about-container h1 span { color: var(--yellow); }

.about-sub {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
}

.about-mission {
  background: var(--black);
  border: 1.5px solid #ffd60a33;
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 72px;
}

.about-mission-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.about-mission-inner i {
  font-size: 1.6rem;
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-mission-inner p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

.about-team-title {
  text-align: center;
  margin-bottom: 36px;
}

.about-team-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.about-team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.about-card {
  background: #1a1a1a;
  border: 1.5px solid #ffd60a33;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.about-card:hover {
  background: #222;
  border-color: var(--yellow);
  transform: translateY(-5px);
}

.about-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.about-card-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
   margin-bottom: 4px;
}

.about-card-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.about-card-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
}

.about-card-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.about-card-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid #ffd60a33;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.about-card-socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}
.about-value {
  background: var(--surface);
  border: 1.5px solid #ffd60a26;
  border-radius: 20px;
  padding: 28px 24px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.about-value:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.about-value i {
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 14px;
  display: block;
  transition: color 0.25s;
}
.about-value:hover i { color: var(--black); }

.about-value h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: color 0.25s;
}
.about-value:hover h4 { color: var(--black); }
.about-value p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
  transition: color 0.25s;
}

.about-value:hover p { color: #333; }

.about-cta {
  border: 1.5px solid #ffd60a40;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--surface);
}

.about-cta-text { flex: 1; }

.about-cta-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.about-cta-text p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 4px;
}
  /* ── CONTACT ── */
.ct-block i.ct-icon-minimal {
  color: var(--yellow);
  font-size: 20px;
  width: 36px;
  text-align: center;
  margin-top: 3px;
}
.ct-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact .ct-container { 
  padding: 120px 0 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid #ffd60a40;
}
.ct-info {
  background: var(--black); 
  padding: 48px 40px; 
}
.ct-info .sub {margin-bottom: 40px;
}
.ct-block {
  display: flex; gap: 14px; 
  align-items: flex-start; 
  margin-bottom: 24px; 
}
.ct-icon {
  width: 36px; 
  height: 36px; 
  border: 1px solid var(--border); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 14px; 
  flex-shrink: 0;
}
.ct-label{ 
  font-size: 11px; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--gray); 
}
.ct-val { 
  font-size: 14px; 
  font-weight: 500; 
  margin-top: 2px; 
}
.ct-form { 
  background: var(--black); 
  padding: 48px 40px; 
}
.ct-form h3{
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 28px; 
}
.row2 { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 14px; 
}
.fg { 
  margin-bottom: 14px; 
}
.fg label { 
  display: flex ; 
  font-size: 11px; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  color: var(--gray); 
  margin-bottom: 7px; 
}
.fg input,.fg textarea { 
  width: 100%; 
  background: var(--black); 
  border: 1px solid #ffd60a40; 
  padding: 11px 14px; 
  color: var(--white); 
  font-family: 'Inter', sans-serif; 
  font-size: 14px; 
  outline: none; 
  resize: none; 
  transition: border-color .2s;
}
.fg input:focus, .fg textarea:focus { 
  border-color: var(--yellow);
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  border-radius: 50%;  
  font-size: 16px;
  transition: 0.3s ease;
  background: var(--yellow);
}
/* ── CONTACT NAV BUTTONS — Questionnaire & Fun Page ── */
.ct-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.ct-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.ct-nav-btn.filled {
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--yellow);
}

.ct-nav-btn.filled:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}

.ct-nav-btn.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.ct-nav-btn.ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.ct-nav-btn i {
  font-size: 14px;
}
.banner-container {
    overflow: hidden;
    background: var(--yellow);
    padding: 10px 0;
    position: relative;
    border-bottom: 2px solid rgba(0,0,0,0.15);
  }
  /* Le texte défile de droite à gauche en boucle */
  .banner-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
  }
  .banner-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    padding: 0 60px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }
  .banner-text i { margin: 0 8px; font-size: 12px; color: rgba(0,0,0,0.4); }
  /* Animation du défilement */
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  /* L'heure est mise à jour dynamiquement */
  #banner-time, #banner-date { font-weight: 800; }
 
  /* ════════════════════════════════
     GALERIE D'IMAGES — Partie 4b
  ════════════════════════════════ */
  .gallery-container {
    margin: 60px 0;
  }
  .gallery-container .container-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .gallery-container .container-sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
  }
  /* Conteneur de la galerie */
  .gallery-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/7;
    border: 1px solid var(--border);
  }
  /* Images de la galerie */
  .gallery-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .gallery-slide.active { opacity: 1; }
 
  /* Overlay avec le titre de l'image */
  .gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 30px 28px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .gallery-caption { font-size: 16px; font-weight: 700; }
  .gallery-caption small { display: block; font-size: 12px; color: var(--gray); font-weight: 400; margin-top: 2px; }
 
  /* Indicateurs (points) */
  .gallery-dots {
    display: flex;
    gap: 6px;
  }
  .gallery-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all .3s;
    border: none;
  }
  .gallery-dot.active { background: var(--yellow); transform: scale(1.3); }
 
  /* Boutons précédent / suivant */
  .gallery-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    pointer-events: none;
  }
  .gallery-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    pointer-events: all;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .gallery-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
 
  /* Compteur de temps restant */
  .gallery-timer {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--gray);
    display: flex; align-items: center; gap: 6px;
  }
  #timer-bar {
    width: 40px; height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
  }
  #timer-fill {
    height: 100%;
    background: var(--yellow);
    border-radius: 2px;
    transition: width 1s linear;
  }

/* ── QUESTIONNARY ── */

/* Questionnaire Simple Styles */

 /* ── Hero ── */
.q-container { padding: 120px 0 60px;
 }
 
    /* ── Card formulaire ── */
.q-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto 80px;
  }
 
    /* ── Groupes de champs ── */
.q-group { margin-bottom: 28px; }
.q-group label.main-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
  font-weight: 600;
}
 
    /* Inputs & Textarea */
.q-group input[type="text"],
.q-group input[type="email"],
.q-group textarea,
.q-group select {
  width: 100%;
  background: var(--border);
  border: 1px solid var(--border);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  border-radius: 10px;
  resize: vertical;
  transition: border-color .2s, background .2s;
}
.q-group input:focus,
.q-group textarea:focus,
.q-group select:focus { border-color: var(--yellow); background: rgba(255,214,10,0.03); }
.q-group select option { background: #111; }
 
    /* Erreur de validation */
.error-msg {
  color: var(--error);
  font-size: 12px;
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 5px;
}
.error-msg.visible { display: flex; }
.field-error input,.field-error textarea,.field-error select { border-color: var(--error) !important; }
 
    /* Champ valide */
.field-ok input,.field-ok textarea,.field-ok select { border-color: var(--valide) !important; }
 
    /* Radio & Checkbox */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
  color: var(--gray);
}
.option-item:hover { border-color: var(--yellow); color: var(--white); background: rgba(255,214,10,0.04); }
.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  accent-color: var(--yellow);
  width: 16px; height: 16px;
  cursor: pointer;
  }
 
    /* Stars rating */
.stars { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.stars input { display: none; }
.stars label {
  font-size: 28px;
  color: var(--border);
  cursor: pointer;
  transition: color .15s;
  }
.stars label:hover,.stars label:hover ~ label,.stars input:checked ~ label { color: var(--yellow); }
 
    /* Range slider */
.range-wrap { display: flex; align-items: center; gap: 16px; }
.range-wrap input[type="range"] { flex: 1; accent-color: var(--yellow); }
.range-val {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  color: var(--yellow);
  font-size: 16px;
}
 

    /* Séparateur interne */
.q-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
 
    /* Message de succès */
.success-panel {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.success-panel.visible { display: block; }
.success-icon { font-size: 60px; color: var(--yellow); margin-bottom: 20px; }
.success-panel h2 { font-size: 28px; margin-bottom: 12px; }
.success-panel p { color: var(--gray); font-size: 15px; }
 
    /* Char count */
.char-count { font-size: 11px; color: var(--gray); text-align: right; margin-top: 4px; }
 
    /* Liens nav extras */
.nav-links { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
.nav-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  transition: all .2s;
}
.nav-link-pill:hover { border-color: var(--yellow); color: var(--yellow); }

/*---------FUNPAGE----------------*/

.fp-container { 
    padding: 60px 0 40px; 
    text-align: center;
}

.fp-layout { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 32px; 
    margin-bottom: 60px; 
}

@media(max-width:800px) { 
    .fp-layout { 
        grid-template-columns: 1fr; 
    } 
}

/* Game Card Styles */
.game-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.game-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-card .sub-label { 
    font-size: 13px; 
    color: var(--gray); 
    margin-bottom: 20px; 
}

/* Memory Game Grid */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mem-card {
    aspect-ratio: 1;
    border-radius: 12px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,0.04);
    transition: all 0.2s ease;
    position: relative;
}

/* Style pour l'icône question mark (face cachée) */
.mem-card .fa-circle-question {
    font-size: 32px;
    color: var(--yellow);
    transition: all 0.2s ease;
}

/* Style pour les icônes Font Awesome sur les cartes retournées */
.mem-card .card-icon {
    display: none;
    font-size: 32px;
}

.mem-card .card-icon i {
    font-size: 32px;
    color: var(--yellow);
}

/* Carte retournée */
.mem-card.flipped {
    background: rgba(255,214,10,0.1);
    border-color: var(--yellow);
}

.mem-card.flipped .fa-circle-question {
    display: none;
}

.mem-card.flipped .card-icon {
    display: block;
}

/* Carte appariée */
.mem-card.matched {
    border-color: var(--yellow);
    background: rgba(255,214,10,0.2);
    cursor: default;
    opacity: 0.8;
}

.mem-card.matched .card-icon i {
    color: var(--yellow);
}

/* Effet hover sur les cartes non retournées */
.mem-card:hover:not(.flipped):not(.matched) {
    transform: scale(1.05);
    border-color: rgba(255,214,10,0.5);
}

/* Game Score */
.game-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.game-score span { 
    color: var(--yellow); 
    font-weight: 700; 
}

.btn-game { 
    padding: 6px 16px; 
    background: transparent; 
    border: 1px solid var(--yellow); 
    color: var(--yellow); 
    border-radius: 50px; 
    cursor: pointer; 
    font-size: 12px; 
    font-family: 'Inter', sans-serif;
    transition: all 0.2s; 
}

.btn-game:hover { 
    background: var(--yellow); 
    color: var(--black); 
}

/* Propagation Section */
.propagation-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 60px;
}

.propagation-container h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.propagation-container p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.propagation-container code {
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

/* Event Propagation Levels */
.ev-outer {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.2s;
}

.ev-outer:hover { 
    border-color: rgba(122,178,247,0.5); 
}

.ev-outer-label { 
    font-size: 11px; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: var(--gray); 
    margin-bottom: 16px; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.ev-zone {
    background: rgba(255,214,10,0.04);
    border: 2px dashed rgba(255,214,10,0.25);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.ev-zone:hover { 
    border-color: rgba(255,214,10,0.5); 
}

.ev-zone-label { 
    font-size: 11px; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: rgba(255,214,10,0.6); 
    margin-bottom: 14px; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.ev-btn-wrap { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap;
}

.ev-btn {
    padding: 10px 20px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ev-btn:hover { 
    transform: scale(1.02); 
    box-shadow: 0 4px 12px rgba(255,214,10,0.3);
}

.ev-btn-stop {
    padding: 10px 20px;
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ev-btn-stop:hover { 
    border-color: #ff7070; 
    color: #ff7070; 
}

/* Event Log */
.ev-log {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    font-size: 12px;
    min-height: 120px;
    max-height: 180px;
    overflow-y: auto;
    margin-top: 16px;
}

.ev-log-entry {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-family: monospace;
    font-size: 11px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ev-log-entry.outer { color: #7ab2f7; }
.ev-log-entry.zone { color: #ffd60a; }
.ev-log-entry.btn { color: #7affa0; }
.ev-log-entry.stop { color: #ff7070; }
.ev-log-entry.mouse { color: #c07aff; }
.ev-log-entry.key { color: #ff9f7a; }

.ev-log-clear { 
    font-size: 11px; 
    color: var(--gray); 
    cursor: pointer; 
    float: right;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.ev-log-clear:hover { 
    color: var(--white); 
}

/* Mouse Tracker */
.mouse-tracker {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mouse-tracker span {
    color: var(--yellow);
    font-weight: 600;
}

/* Keyboard Hint */
.key-hint {
    display: inline-block;
    background: rgba(255,214,10,0.1);
    border: 1px solid var(--yellow);
    border-radius: 6px;
    padding: 2px 8px;
    font-family: monospace;
    font-size: 11px;
    color: var(--yellow);
}

/* Legend */
.legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 11px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.legend span { 
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 8px;
}
  /*=============FOOTER==============*/
.footer {
  background: var(--yellow); 
  color: var(--black);  
  padding: 60px 40px 40px;
  margin-top: 80px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  position: relative;
  border-radius: 30px 30px 0 0;  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 10px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-col ul li a:hover { color: #000000; transform: translateX(5px); font-weight: 600; }
.footer-col p { color: #1a1a1a; font-size: 14px; line-height: 1.7; margin: 0 0 15px 0; }

#footer__social > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgb(199, 173, 3);
  border-radius: 50%;
  color: var(--black);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

#footer__social > a:hover { 
  background: var(--black); 
  color: var(--yellow); 
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p { 
  color: var(--black); 
  font-size: 13px; 
  margin: 0; 
}

.footer-bottom-links { 
  display: flex; 
  gap: 25px; 
}
.footer-bottom-links a { 
  color: var(--black); 
  text-decoration: none; 
  font-size: 13px; 
  transition: color 0.3s; 
}
.footer-bottom-links a:hover { 
  color: var(--black); 
  text-decoration: underline; 
}

  /* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .faq-cta { flex-direction: column; text-align: center; }
  .about-cta { flex-direction: column; text-align: center; }
  .about-mission-inner { flex-direction: column; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-top { padding: 15px; }
  .prod-top-title { font-size: 18px; }
  .prod-top-table th,.prod-top-table td { padding: 8px; }
  .product-cell img { width: 30px; height: 30px; }
}
@media (max-width: 600px) {
  .faq-cta { flex-direction: column; text-align: center; }
  .about-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
@media(max-width:900px) {
  header { padding: 18px 24px; }
  .wrap { padding: 0 24px; }
  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  footer nav { margin-top: 4px; }
  #home .container-inner, .contact-grid { grid-template-columns: 1fr; }
  .container-visual { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media(max-width:560px) {
  nav a { margin-left: 16px; font-size: 13px; }
  .grid-4 { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .prod-top-table { font-size: 12px; }
  .rating i { font-size: 10px; }
}