/* ═══════════════════════════════════════════════════════════
   FAQ PRODUIT - Bloc de conversion
   ═══════════════════════════════════════════════════════════ */

.product-faq-section {
  background: #0A0A0A;
  padding: 70px 0;
  border-top: 1px solid #2A2A2A;
}

.product-faq-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
  color: #D4A017;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid #2A2A2A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #F5F5F0;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.product-faq-subtitle {
  font-size: 16px;
  color: #A0A0A0;
  margin: 0;
  line-height: 1.6;
}

/* Container FAQ */
.product-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item FAQ */
.product-faq-item {
  background: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-faq-item:hover {
  border-color: #333;
}

.product-faq-item.active {
  border-color: #D4A017;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.1);
}

.product-faq-question {
  width: 100%;
  padding: 24px 60px 24px 28px;
  background: transparent;
  border: none;
  color: #F5F5F0;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: color 0.3s ease;
}

.product-faq-question:hover {
  color: #D4A017;
}

.product-faq-item.active .product-faq-question {
  color: #D4A017;
}

.product-faq-icon {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-faq-icon svg {
  width: 20px;
  height: 20px;
  stroke: #D4A017;
  stroke-width: 2.5;
}

.product-faq-item.active .product-faq-icon {
  transform: translateY(-50%) rotate(180deg);
}

.product-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.product-faq-item.active .product-faq-answer {
  max-height: 500px;
}

.product-faq-answer-content {
  padding: 0 28px 28px 28px;
  color: #A0A0A0;
  font-size: 15px;
  line-height: 1.8;
}

.product-faq-answer-content p {
  margin: 0 0 12px 0;
}

.product-faq-answer-content p:last-child {
  margin-bottom: 0;
}

.product-faq-answer-content strong {
  color: #F5F5F0;
  font-weight: 600;
}

.product-faq-answer-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.product-faq-answer-content li {
  margin: 8px 0;
  color: #A0A0A0;
}

.product-faq-answer-content li::marker {
  color: #D4A017;
}

/* Badge de confiance */
.product-faq-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.1);
  color: #2ECC71;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

.product-faq-trust svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* CTA dans FAQ */
.product-faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
  border: 1px solid #2A2A2A;
  border-radius: 12px;
}

.product-faq-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #F5F5F0;
  margin: 0 0 12px 0;
}

.product-faq-cta-text {
  font-size: 15px;
  color: #A0A0A0;
  margin: 0 0 28px 0;
}

.product-faq-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .product-faq-section {
    padding: 50px 0;
  }

  .product-faq-title {
    font-size: 26px;
  }

  .product-faq-subtitle {
    font-size: 15px;
  }

  .product-faq-question {
    font-size: 16px;
    padding: 20px 50px 20px 22px;
  }

  .product-faq-icon {
    right: 22px;
  }

  .product-faq-answer-content {
    padding: 0 22px 22px 22px;
    font-size: 14px;
  }

  .product-faq-cta {
    padding: 30px 20px;
  }

  .product-faq-cta-title {
    font-size: 20px;
  }

  .product-faq-cta-buttons {
    flex-direction: column;
  }

  .product-faq-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-faq-question {
    font-size: 15px;
    padding: 18px 45px 18px 18px;
  }

  .product-faq-icon {
    right: 18px;
    width: 20px;
    height: 20px;
  }

  .product-faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .product-faq-answer-content {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
}
