.faq {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 2rem;
}

/* Background image — same treatment as home */
.faq__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
}

.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Header */
.faq__subtitle {
  font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: clamp(2.8rem, 4vw, 3.2rem);
  color: var(--color-light-blue);
  line-height: 1.1;
  text-align: center;
}

.faq__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--color-dark-blue);
  text-align: center;
}

.faq__desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-grey);
  text-align: center;
  max-width: 600px;
  margin-bottom: 1rem;
}

/* Accordion list */
.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Each item */
.faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.faq__item:first-child {
  border-top: none;
}

/* Question row (button) */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--color-nav-text);
  transition: color 0.2s ease;
}

.faq__question-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-nav-text);
  transition: color 0.2s ease;
}

/* Active state */
.faq__item.is-open .faq__question-text {
  color: var(--color-light-blue);
}

.faq__item.is-open .faq__question-icon {
  color: var(--color-light-blue);
}

/* Answer panel */
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__answer-inner {
  padding: 0 0 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-grey);
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.faq__item.is-open .faq__answer-inner {
  opacity: 1;
}
.faq__item:hover .faq__question-icon {
  color: var(--color-light-blue);
}