.mp-faq {
  padding: 140px 0;
  background: var(--soft);
  position: relative;
}

.mp-faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.mp-faq__head {
  position: sticky;
  top: 120px;
}

.mp-faq__head .mp-label {
  margin-bottom: 18px;
  display: block;
}

.mp-faq__title {
  font-size: clamp(38px, 5.5vw, 72px);
  margin-bottom: 22px;
}

.mp-faq__head p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.mp-faq__head .mp-btn { margin-top: 8px; }

.mp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-quart);
}

.mp-faq__item.is-open {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.mp-faq__q {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.3;
}

.mp-faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-quart);
}
.mp-faq__item.is-open .mp-faq__icon {
  background: var(--lime);
  transform: rotate(45deg);
}

.mp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-quart);
}

.mp-faq__a-inner {
  padding: 0 28px 26px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mp-faq__item.is-open .mp-faq__a {
  max-height: 400px;
}

@media (max-width: 1024px) {
  .mp-faq { padding: 100px 0; }
  .mp-faq__grid { grid-template-columns: 1fr; gap: 48px; }
  .mp-faq__head { position: static; }
}

@media (max-width: 640px) {
  .mp-faq { padding: 80px 0; }
  .mp-faq__q { padding: 20px 22px; font-size: 17px; }
  .mp-faq__a-inner { padding: 0 22px 22px; }
}
