
/* contact */
 /* Responsive layout */
    @media (max-width: 767px) {
        .contact-page__form-box .responsive-col {
            width: 100% !important;
            max-width: 100% !important;
            flex: 0 0 100% !important;
        }

        .contact-page__form-box .checkbox-group {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
    }

    /* Desktop layout */
    .contact-page__form-box .checkbox-group {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 8px;
    }

    .contact-page__form-box .checkbox-group input[type="checkbox"] {
        display: none;
    }

    .contact-page__form-box .checkbox-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        position: relative;
        font-weight: 500;
    }

    .contact-page__form-box .checkbox-group label::before {
        content: "";
        width: 18px;
        height: 18px;
        border: 2px solid #FE5C31;
        border-radius: 4px;
        display: inline-block;
        vertical-align: middle;
        transition: background-color 0.2s ease;
    }

    .contact-page__form-box .checkbox-group input[type="checkbox"]:checked + label::before {
        background-color: #FE5C31;
        content: "✓";
        color: white;
        font-size: 13px;
        text-align: center;
        line-height: 16px;
    }
    .contact-page__form-box .contact-page__input-box .besoin-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}
/* quote a propos */
.quote-section {
  position: relative;
  background-color: #FE5C31; /* Couleur unie */
  border-radius: 12px;
  overflow: hidden;
  margin: 60px auto;
  padding: 50px 20px;
  width: 80%;
  text-align: center;
  color: white;
}

.quote-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.quote-content blockquote {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
}

.quote-content p {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.9;
}

.quote-icon {
  position: absolute;
  width: 85px;
  opacity: 0.15;
  z-index: 2;
}

.left-quote {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.right-quote {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 600px) {
  .quote-section {
    padding: 40px 15px;
    width: 90%;
  }

  .quote-content {
    padding: 0 20px;
  }

  .quote-content blockquote {
    font-size: 1.1rem;
  }

  .quote-content p {
    font-size: 0.9rem;
  }

  .quote-icon {
    width: 40px;
    opacity: 0.15;
  }

  .left-quote {
    left: 10px;
    top: 20%;
  }

  .right-quote {
    right: 10px;
    top: 52%;
  }
}
.flip-card {
  width: 100%;
  max-width: 290px;
  height: 260px;
  perspective: 1000px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
}


.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* FRONT */
.flip-card-front {
  background-color: #000;
  transform: rotateY(0deg);
  z-index: 2;
}

.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 0;
}

.card-title {
  z-index: 1;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

/* BACK */
.flip-card-back {
  background: linear-gradient(135deg, #FE5C31 0%, #5f1d0b 100%);
  color: white;
  transform: rotateY(180deg);
  z-index: 1;
  padding: 20px;
}

 .flip-card-back h5 {
  font-weight: bold;
  margin-bottom: 15px;
  color: white !important;
  text-align: center;
}

.flip-card-back ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.list-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

@media (max-width: 576px) {
  .flip-card {
    margin-bottom: 25px;
  }

  .card-title {
    font-size: 16px;
    padding: 0 5px;
  }

  .flip-card-back h5 {
    font-size: 16px;
  }

  .flip-card-back ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .list-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Front */
.flip-card-front {
  background-color: #000;
  transform: rotateY(0deg);
  z-index: 2;
}

.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 0;
}

.card-title {
  z-index: 1;
  color: white;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  text-align: center;
}

/* Back */
.flip-card-back {
  background-color: #FE5C31;
  color: white;
  transform: rotateY(180deg);
  z-index: 1;
  padding: 20px;
}
.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

/* pricing */
 .pack-container {
      padding: 50px 0;
    }

    .card-pricing {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .ribbon {
      position: absolute;
      top: -10px;
      right: 20px;
      background-color: #ff5722;
      color: white;
      padding: 5px 10px;
      font-size: 13px;
      font-style: italic;
      border-radius: 5px;
    }

    .price-tag {
      background-color: #ff7b19;
      color: white;
      font-weight: bold;
      font-size: 22px;
      text-align: center;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 20px;
    }

    .btn-discover {
      background-color: #ff5722;
      color: white;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 30px;
      border: none;
      transition: background-color 0.3s;
    }

    .btn-discover:hover {
      background-color: #e84e14;
    }

    .card-title {
      font-size: 22px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .card-subtitle {
      color: #888;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .card ul {
      padding-left: 20px;
    }

    .card li {
      margin-bottom: 10px;
    }

    .highlight {
      font-weight: bold;
    }

/* ===== Politique de cookies — Layout & UI ===== */

.cookie-policy { 
  scroll-behavior: smooth;
  margin-top: 100px;
  margin-bottom: 100px;
 }

/* Grille 2 colonnes (sidebar + contenu) */
.cookie-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

/* Sidebar : sommaire sticky */
.cookie-toc {
  position: sticky;
  top: 96px;           /* ajuste si ton header sticky est plus/moins haut */
  align-self: start;
}

/* Carte sommaire */
.toc {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 16px 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.toc h2 {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: .2px;
}
.toc ul { list-style: none; padding-left: 0; margin: 0; }
.toc li { margin: 2px 0; }

.toc a {
  display: block;
  padding: 6px 0 6px 8px;
  text-decoration: none;
  color: #334155;
  font-size: 0.92rem;
  border-left: 3px solid transparent;
  border-radius: 4px;
  transition: color .15s ease, padding .15s ease, border-color .15s ease, background .15s ease;
}
.toc a:hover {
  color: #ff5c31;
  border-left-color: #ff5c31;
  background: #fff7f5;
  padding-left: 10px;
}

/* Contenu */
.cookie-article section { margin-bottom: 2.5rem; }
.cookie-article h2 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
  color: #ff5c31;
}
.cookie-article h3 {
  font-size: 1.05rem;
  margin: 1rem 0 .5rem;
  font-weight: 600;
  color: #1e293b;
}
.cookie-article p,
.cookie-article li {
  font-size: 0.97rem;
  line-height: 1.65;
  color: #334155;
}
.cookie-article ul { padding-left: 1.2rem; }

/* Grille interne de la section "Détails par outil" */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.grid-2 > div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
}
.grid-2 h3 {
  margin-top: 0;
}

/* Listes de définitions plus lisibles */
dl { margin: 0; }
dt { font-weight: 600; color: #0f172a; }
dd { margin: 0 0 .4rem 0; color: #334155; }

/* Bouton inline et texte atténué utilisés dans la section "Préférences" */
.btn-inline {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #ff5c31;
  color: #ff5c31;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .15s ease, color .15s ease;
}
.btn-inline:hover { background: #ff5c31; color: #fff; }
.muted { color: #64748b; font-size: .9rem; }

/* Décalage d’ancrage pour header sticky : les titres ne se cachent pas derrière le header */
.cookie-article section[id] { scroll-margin-top: 110px; } /* ajuste selon la hauteur de ton header */

/* Responsive */
@media (max-width: 991px) {
  .cookie-layout { grid-template-columns: 1fr; }
  .cookie-toc { position: static; margin-bottom: 1rem; }
  .grid-2 { grid-template-columns: 1fr; }
}
