/* ─── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  padding: 4rem 0;
  background-color: var(--color-bg-white);
}

.faq-card {
  background-color: #111;
  color: #fff;
  border-radius: 40px;
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: flex-start;
}

.faq__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.faq__subtitle {
  color: #888;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 400px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  padding: 2rem 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none; /* Hide default arrow */
}

.faq-item__question::-webkit-details-marker {
  display: none; /* Hide default arrow Safari */
}

.faq-item__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -6px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.faq-item__answer {
  padding-bottom: 2rem;
  color: #888;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .faq-card {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 4rem var(--container-padding);
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .faq__title {
    font-size: 2.25rem;
  }
  
  .faq-item__question {
    font-size: 1.125rem;
  }
}
