/* ─── DEALER FAQS PAGE — accordion (scoped under .landing-page) ─── */

.landing-page .faq-content {
  max-width: 860px;
}

.landing-page .faq-category {
  margin-bottom: 44px;
}

.landing-page .faq-category:last-child {
  margin-bottom: 0;
}

.landing-page .faq-category h2 {
  margin: 0 0 18px;
}

.landing-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-page .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.landing-page .faq-item.open {
  border-color: var(--blue);
}

.landing-page .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.landing-page .faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.landing-page .faq-icon::before,
.landing-page .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-page .faq-icon::before {
  width: 14px;
  height: 2px;
}

.landing-page .faq-icon::after {
  width: 2px;
  height: 14px;
}

.landing-page .faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.landing-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.landing-page .faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
}