/* ===== ReplicaFactory FAQ (Theme-Matched Version) ===== */

.rf-faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.rf-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.rf-faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #202124;
  margin: 0;
}

.rf-faq-header p {
  margin-top: 8px;
  font-size: 16px;
  color: #5f6368;
}

.rf-faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease;
}

.rf-faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.rf-faq-question {
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: none;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.rf-faq-number {
  font-size: 14px;
  color: #9aa0a6;
}

.rf-faq-title {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
}

.rf-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #dadce0;
  position: relative;
  justify-self: end;
}

.rf-faq-icon::before,
.rf-faq-icon::after {
  content: "";
  position: absolute;
  background: #202124;
  transition: 0.3s ease;
}

.rf-faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rf-faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rf-faq-item.active .rf-faq-icon::after {
  height: 0;
}

.rf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.rf-faq-answer p {
  padding-bottom: 16px;
  font-size: 16px;
  color: #3c4043;
  line-height: 1.6;
}

.rf-faq-more {
  text-align: center;
  margin-top: 35px;
}

.rf-faq-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #202124;
  border-radius: 999px;
  text-decoration: none;
  color: #202124;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  transition: all 0.25s ease;
}

.rf-faq-btn:hover {
  background: #202124;
  color: #ffffff;
}

.rf-faq-item.active .rf-faq-title {
  font-weight: 600;
}