<style>
   :root{
  --bg:#0d0f14; /* fond profond */
  --card:#121622; /* cartes */
  --muted:#9aa4b2; /* texte secondaire */
  --text:#e6ebf5; /* texte principal */
  --accent:#FDB415; /* 👉 ton code couleur principal */
  --accent-2:#f7a800; /* variante plus foncée/orangée pour le dégradé */
  --line:rgba(255,255,255,.08);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:22px;
  --radius-sm:14px;
  --gap:28px;
}

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
   body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  color:var(--text);
  background:var(--bg);
}
    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}

    /* ====== Layout ====== */
    .container{width:min(1200px,92%); margin-inline:auto}
    section{padding:80px 0}
    .eyebrow{font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; color:var(--accent-2)}
    h1,h2,h3{margin:0 0 12px}
    h1{font-size:clamp(2rem,5vw,3.2rem); line-height:1.1}
    h2{font-size:clamp(1.6rem,3.5vw,2.2rem)}
    p{color:var(--muted); line-height:1.65}
    .btn{display:inline-flex; align-items:center; gap:10px; padding:14px 20px; border-radius:999px; background:linear-gradient(120deg,var(--accent),#5a79ff); color:#fff; font-weight:600; box-shadow:0 10px 20px rgba(124,92,255,.25); transition:.2s transform,.2s box-shadow}
    .btn:hover{transform:translateY(-2px); box-shadow:0 18px 28px rgba(124,92,255,.35)}
    .btn.alt{background:transparent; border:1px solid var(--line); color:var(--text)}

    /* ====== Header ====== */
    header{position:sticky; top:0; z-index:50; backdrop-filter:saturate(1.2) blur(8px); background:rgba(13,15,20,.55); border-bottom:1px solid var(--line)}
    .nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
    .brand{display:flex; align-items:center; gap:12px; font-weight:700}
    .logo{width:38px; height:38px; border-radius:12px; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:grid; place-items:center; color:#0c0c11; font-weight:900}
    nav ul{display:flex; gap:18px; list-style:none; margin:0; padding:0}
    nav a{padding:8px 12px; border-radius:999px; color:var(--muted)}
    nav a:hover{background:var(--line); color:var(--text)}
    .nav-cta{display:flex; gap:12px; align-items:center}
    .burger{display:none; width:44px; height:44px; border-radius:12px; border:1px solid var(--line); background:#444444; position:relative}
    .burger span,.burger::before,.burger::after{content:""; position:absolute; left:10px; right:10px; height:2px; background:#fff; transition:.25s}
    .burger span{top:21px}
    .burger::before{top:14px}
    .burger::after{top:28px}
    .burger.active span{opacity:0}
    .burger.active::before{transform:translateY(7px) rotate(45deg)}
    .burger.active::after{transform:translateY(-7px) rotate(-45deg)}

   /* ====== Menu Desktop ====== */
.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ====== Menu Mobile ====== */
.burger { display: none; } /* caché par défaut */
.mobile-drawer { display: none; } /* caché par défaut */

@media (max-width: 960px) {
  .menu { display: none; }         /* cache la nav desktop */
  .burger { display: block; }      /* montre le burger */
  .mobile-drawer {
    position: fixed;
    inset: 70px 0 auto 0;
    background: rgba(13,15,20,.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .mobile-drawer.open { display: block; }
  .mobile-drawer ul { list-style: none; margin: 0; padding: 14px; }
  .mobile-drawer a {
    display: block;
    padding: 14px 10px;
    border-radius: 12px;
    color: var(--muted);
  }
  .mobile-drawer a:hover {
    background: var(--line);
    color: var(--text);
  }
}

    /* ====== Hero ====== */
    .hero{display:grid; grid-template-columns:1.2fr .8fr; gap:var(--gap); align-items:center; padding-top:40px}
    .hero-card{background:linear-gradient(180deg,rgba(124,92,255,.12),rgba(124,92,255,0) 40%), var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow)}
    .hero .actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:16px}
    .portrait{position:relative; aspect-ratio:4/5; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); }
    .portrait::after{content:""; position:absolute; inset:auto 0 0 0; height:40%; background:linear-gradient(0deg,rgba(13,15,20,.95),rgba(13,15,20,0));}
    .portrait .gen{position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:78%; height:auto; filter:drop-shadow(0 20px 30px rgba(0,0,0,.45))}
    .hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
    .badge{border:1px solid var(--line); padding:8px 12px; border-radius:999px; font-size:.9rem; color:var(--muted); background:rgba(255,255,255,.02)}

    @media (max-width: 960px){
      .hero{grid-template-columns:1fr; padding-top:10px}
    }

    /* ====== Marquee ====== */
    .marquee-wrap{overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:rgba(255,255,255,.02)}
    .marquee{display:flex; gap:28px; align-items:center; white-space:nowrap; animation:scroll 28s linear infinite}
    .tech{display:inline-flex; align-items:center; gap:10px; border:1px solid var(--line); padding:10px 16px; border-radius:999px; color:#333333}
    .dot{width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,var(--accent-2),var(--accent))}
    @keyframes scroll{from{transform:translateX(0)} to{transform:translateX(-50%)} }


.tech {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  color: #333;
  font-size: 0.95rem;
}
.tech i {
  font-size: 1.1rem;
  color: #fdb415;
}




  /* ====== Services ====== */
#services .grid {
  margin-top: 26px;
}


.grid {
  display: grid;
  gap: var(--gap, 24px); /* fallback si --gap non défini */
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service {
  background: var(--card, #fff);
  border: 1px solid var(--line, #ddd);
  border-radius: var(--radius, 12px);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box; /* Ajout pour éviter débordements */
}

.service .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124,92,255,.25), rgba(39,224,161,.25));
  margin-bottom: 14px;
}

.service:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  #services .row {
    flex-direction: column;
    gap: 16px;
  }

  #services .row a.btn {
    width: 100%;
    text-align: center;
  }

  #services h2, #services p {
    font-size: 1.1rem; /* ajuste les textes si trop larges */
  }
}


    /* ====== Réalisations (Portfolio) ====== */
    .carousel{position:relative}
    .carousel-track{display:flex; gap:var(--gap); transition:transform .6s ease; will-change:transform}
    .slide{min-width:100%}
    .portfolio-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap)}
    .card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column}
    .thumb{aspect-ratio:16/10; background:linear-gradient(135deg,rgba(124,92,255,.18),rgba(39,224,161,.18)); border-bottom:1px solid var(--line); position:relative}
    .thumb::after{content:"Preview"; position:absolute; right:12px; bottom:12px; padding:6px 10px; border-radius:999px; background:rgba(0,0,0,.35); font-size:.8rem}
    .card-body{padding:16px; display:flex; justify-content:space-between; align-items:center}
    .carousel-controls{display:flex; justify-content:center; gap:10px; margin-top:16px}
    .dot-btn{width:10px; height:10px; border-radius:50%; border:1px solid var(--muted); background:transparent}
    .dot-btn.active{background:var(--accent)}
    @media (max-width: 1100px){ .portfolio-grid{grid-template-columns:repeat(2,1fr)} }
    @media (max-width: 640px){ .portfolio-grid{grid-template-columns:1fr} }


.testimonials {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.testimonials .eyebrow {
  font-weight: 500;
  color: #FDB415;
  margin-bottom: 8px;
  display: block;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}



.workflow {
  padding: 80px 0;
  background-color: #FAF7F2;
  text-align: center;
}
.workflow .eyebrow {
  color: #fdb415;
  font-weight: 600;
  margin-bottom: 10px;
}
.workflow h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #4A4A4A;
}
.workflow .muted {
  color: #777;
  margin-bottom: 40px;
}

/* Grille 3 colonnes desktop */
.workflow-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* pour mobile */
}
.workflow-step {
  flex: 1 1 30%; /* 3 colonnes à 30% avec espace */
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  min-width: 250px; /* pour que ça reste lisible sur mobile */
}
.workflow-step:hover {
  transform: translateY(-5px);
}
.workflow-step .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.workflow-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #4A4A4A;
}
.workflow-step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.workflow-cta {
  margin-top: 40px;
}





    /* ====== Vision & Mission ====== */
    .vm{display:grid; grid-template-columns:1fr 1fr; gap:var(--gap)}
    .vm .pane{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:24px; position:relative}
    .vm .pane::before{content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(12deg,#fdb415, #fdb415 30px,transparent 40%); pointer-events:none}
    @media (max-width: 960px){ .vm{grid-template-columns:1fr} }

    /* ====== Footer ====== */
    footer{border-top:1px solid var(--line); background:#0b0e13}
    .foot{display:grid; grid-template-columns:2fr 1fr 1fr; gap:var(--gap); padding:36px 0}
    .foot a{color:var(--muted)}
    .socials{display:flex; gap:10px; margin-top:10px}
    .socials a{width:38px; height:38px; border-radius:12px; border:1px solid var(--line); display:grid; place-items:center}
    .copyright{border-top:1px solid var(--line); padding:16px 0; color:var(--muted)}
    @media (max-width: 960px){ .foot{grid-template-columns:1fr} }

    
    /* ====== Utilities ====== */
    .muted{color:var(--muted)}
    .row{display:flex; gap:12px; align-items:center}
    .sep{height:1px; background:var(--line); margin:18px 0}



/* ====== Contact ====== */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
#contact .pane {
  background: #FAF7F2;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 24px;
}
#contact .muted {
  color: #777;
}
#contact .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#contact .form-grid .full {
  grid-column: 1 / -1;
}
#contact input,
#contact textarea,
#contact select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  font-size: 14px;
}

/* Responsive : colonnes empilées sur mobile */
@media(max-width:768px){
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }
  #contact .form-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-btn {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999999 !important;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Sur mobile : bouton un peu plus grand */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 50px !important;
    height: 50px !important;
    bottom: 15px !important;
    right: 15px !important;
    position: fixed !important;

  }
}

:root{
  /* 🎨 Palette */
  --primary:#FDB415;     /* orange doré vif */
  --secondary-light:#FFB941; 
  --secondary-dark:#FF8C00;
  --complement:#154FDB;  /* bleu vif pour CTA */
  
  --bg:#FFFFFF;          /* fond blanc */
  --card:#F5F5F5;        /* gris clair pour cartes */
  --text:#333333;        /* texte principal */
  --muted:#666666;       /* texte secondaire */
  --line:rgba(0,0,0,.08);/* séparateurs légers */

  --shadow:0 10px 30px rgba(0,0,0,.12);
  --radius:22px;
  --radius-sm:14px;
  --gap:28px;
}

/* ====== Body ====== */
body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  color:var(--text);
  background:var(--bg);
}

/* ====== Boutons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;

  /* Gradient doré → gris charbon */
  background: linear-gradient(120deg, #FDB415, #4A4A4A);

  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(253, 180, 21, 0.25);
  transition: .2s transform, .2s box-shadow;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(253, 180, 21, 0.35);
}

/* Bouton alt inchangé */
.btn.alt {
  background: transparent;
  border: 1px solid var(--secondary-light);
  color: var(--secondary-dark);
}

.btn.alt:hover {
  background: var(--secondary-light);
  color: #fff;
}

/* ====== Header ====== */
header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(1.2) blur(8px);
  background:rgba(255,255,255,.9);
  border-bottom:1px solid var(--line);
}
.logo{
  width:38px;
  height:38px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--primary),var(--secondary-dark));
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
}
nav a{
  color:var(--muted);
}
nav a:hover{
  background:var(--secondary-light);
  color:#fff;
}

/* ====== Hero ====== */
.hero-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.eyebrow{
  color:var(--secondary-dark);
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.18em;
}

/* ====== Badges ====== */
.badge{
  border:1px solid var(--secondary-light);
  padding:8px 12px;
  border-radius:999px;
  font-size:.9rem;
  color:var(--secondary-dark);
  background:rgba(255,185,65,.12);
}

/* ====== Services / Cards ====== */
.service{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  position:relative;
  transition:.3s;
}
.service .icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--secondary-light));
  margin-bottom:14px;
  color:#fff;
}
.service:hover{
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ====== Footer ====== */
footer{
  border-top:1px solid var(--line);
  background:var(--card);
}
.foot a{
  color:var(--muted);
}
.copyright{
  border-top:1px solid var(--line);
  padding:16px 0;
  color:var(--muted);
}

  #tarifs {
    padding: 80px 0;
    background: #fff;
    text-align: center;
  }
  #tarifs .eyebrow {
    color: #FDB415;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  #tarifs h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  #tarifs .muted {
    color: #555;
    margin-bottom: 50px;
  }
  .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .pricing-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
  }
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  .pricing-card .badge {
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    background: #FDB415;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
  }
  .featured {
    border: 2px solid #FDB415;
  }
  .badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FDB415;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
  }
  .pricing-card .price {
    font-size: 2rem;
    margin: 20px 0;
    font-weight: bold;
    color: #333;
  }
  .pricing-card ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
  }
  .pricing-card ul li {
    margin-bottom: 12px;
  }
  .btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
  }
  .btn-primary:hover {
    opacity: 0.9;
  }
  .btn-outline:hover {
    background-color: #FDB415;
    color: #fff;
  }
@media (max-width: 991px) {
  .pricing-grid {
    flex-direction: column; /* empile les cartes verticalement */
    gap: 30px;
    align-items: center;   /* centre les cartes horizontalement */
  }

  .pricing-card {
    max-width: 90%;       /* limite la largeur pour ne pas dépasser l'écran */
    flex: 1 1 auto;       /* permet aux cartes de s’adapter */
  }
}


#bonus-paiement
{
  margin-top:40px;
  text-align:center;
}

.bonus-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:30px;
}
.bonus-item {
  background:#FAF7F2;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  text-align:left;
}
.bonus-item h3 {
  margin-bottom:15px;
  color:#4A4A4A;
}
.bonus-item ul {
  list-style:none;
  padding-left:0;
}
.bonus-item ul li::before {
  content:"✔️ ";
}
.btn-primary {
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:#FDB415;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}
@media (max-width:768px){
  .bonus-grid {
    grid-template-columns:1fr;
  }
}

 #extras {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
  }
  #extras .eyebrow {
    color: #FDB415;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  #extras h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #extras .muted {
    color: #555;
    margin-bottom: 50px;
  }
  .extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .extra-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .extra-card:hover {
    transform: translateY(-10px);
  }
  .extra-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .extra-card h3 {
    margin-bottom: 15px;
    color: #333;
  }
  .extra-card p {
    margin-bottom: 15px;
    color: #555;
  }
  .extra-card .extra-price {
    font-weight: bold;
    color: #FDB415;
    font-size: 1.2rem;
  }

 @media (max-width: 991px) {
  .extras-grid {
    flex-direction: column; /* empile les cartes verticalement */
    gap: 30px;
    align-items: center; /* centre les cartes horizontalement */
  }

  .extra-card {
    max-width: 90%; /* limite la largeur pour éviter débordement */
    flex: 1 1 auto;   /* permet à la carte de s’adapter à l’écran */
  }
}


    .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 15px;
  }
  .badge-target {
    background: #FDB415;
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
  }


 /* Badges contour noir pour Starter et Expert */
  .badge-target.starter,
  .badge-target.expert {
    background: #fff;
    color: #000;
    border: 2px solid #333;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  /* Badge pack Pro */
  .badge-popular {
    background: #FDB415;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 10px;
  }

  .badge-target.pro {
    background: #FDB415;
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
  }


/* ====== About Section ====== */
.about-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:var(--gap);
  align-items:center;
}
.about-text p{
  margin-bottom:16px;
}
.about-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0 30px;
}
.about-photo img{
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

@media(max-width:960px){
  .about-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .about-badges{
    justify-content:center;
  }
  .about-photo{
    margin-top:30px;
  }
}
/* ===== FAQ Styles ===== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}
.faq-container h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #4A4A4A;
  font-size: 2rem;
}
.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: #fff;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: #FDB415;
  color: #4A4A4A;
  cursor: pointer;
  transition: background 0.3s ease;
}
  
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: #FAF7F2;
}
.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 500px; /* suffisant pour la plupart des textes */
  padding: 15px 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 1.8rem;
  }
  .faq-question, .faq-answer {
    padding: 14px 18px;
    font-size: 1rem;
  }
}
 
/* ====== Cookie Banner ====== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #4a4a4a;
  color: #ffffff;
  z-index: 9999;
  font-size: 14px;
}

#cookie-banner .cookie-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 18px 20px;
}

#cookie-banner h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

#cookie-banner p {
  margin: 0 0 10px;
  line-height: 1.4;
  color: #fff;
}

#cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #fff;
  color: #4a4a4a;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button:hover {
  opacity: 0.9;
}


