/* FAQ – startsidan */
.faq-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(242,138,34,.09), transparent 28%),
    #f7f7f5;
}

.faq-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.faq-head > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e7e3dc;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 28px rgba(25,30,36,.04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-item:hover {
  border-color: #f1c18f;
  box-shadow: 0 12px 34px rgba(25,30,36,.065);
}

.faq-item[open] {
  border-color: #f0b978;
  box-shadow: 0 14px 38px rgba(25,30,36,.07);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0df;
  color: var(--orange-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform .22s ease, background .22s ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
}

.faq-answer {
  padding: 0 76px 22px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-answer p { margin: 0; }

@media (max-width: 620px) {
  .faq-section { padding: 68px 0; }
  .faq-head { margin-bottom: 27px; }
  .faq-head h2 { font-size: 34px; }
  .faq-head > p:last-child { font-size: 14px; line-height: 1.55; }
  .faq-list { gap: 10px; }
  .faq-item { border-radius: 16px; }
  .faq-item summary {
    min-height: 66px;
    padding: 17px 16px;
    gap: 12px;
    font-size: 14px;
  }
  .faq-plus { width: 31px; height: 31px; font-size: 20px; }
  .faq-answer {
    padding: 0 56px 18px 16px;
    font-size: 13px;
    line-height: 1.6;
  }
}
