.faq {
  padding-block: 6vi;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

/* Decorative blurred circles */
.faq::before,
.faq::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.15;
  pointer-events: none;
}

.faq::before {
  background: var(--color-primary);
  right: -200px;
  top: -300px;
}

.faq::after {
  background: #f5c542;
  left: -100px;
  bottom: -300px;
}

.faq__inner {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left column */
.faq__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__heading {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.faq__subtitle {
  font-size: clamp(0.875rem, 0.6rem + 0.7vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text);
  opacity: 0.8;
}

/* Right column — accordion */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  cursor: pointer;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  font-size: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  color: var(--color-text);
  line-height: 1;
  font-family: inherit;
}

.faq__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding: 0 32px 32px;
  font-size: clamp(0.875rem, 0.7rem + 0.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .faq__inner {
    grid-template-columns: 1fr;
  }

  .faq__header {
    text-align: center;
    align-items: center;
  }

  .faq__question {
    padding: 24px;
    font-size: 1rem;
  }

  .faq__answer p {
    padding: 0 24px 24px;
  }
}
