.lp-faq {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
  padding: 38px 0 48px;
}

.lp-faq-container {
  max-width: 980px;
}

.lp-faq-head {
  margin: 0 0 18px;
}

.lp-faq-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f82c2;
}

.lp-faq-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  color: #0f172a;
}

.lp-faq-sub {
  margin: 10px 0 0;
  max-width: 760px;
  color: #475569;
  font-size: 16px;
  line-height: 1.55;
}

.lp-faq-list {
  display: grid;
  gap: 12px;
}

.lp-faq-item {
  border: 1px solid #dfe7f1;
  border-radius: 12px;
  background: #fff;
  overflow: clip;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-faq-item:hover {
  border-color: #c8d7e8;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.09);
}

.lp-faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  padding: 15px 46px 15px 16px;
  list-style: none;
  position: relative;
}

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

.lp-faq-item summary::before,
.lp-faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #1f82c2;
  border-radius: 99px;
  transform: translateY(-50%);
}

.lp-faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.18s ease;
}

.lp-faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: #334155;
  line-height: 1.6;
  font-size: 15px;
}

.lp-faq-item[open] {
  border-color: #c7d8ea;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

.lp-faq-item[open] summary {
  border-bottom: 1px solid #e6edf5;
  background: #f8fbff;
}

.lp-faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

@media (min-width: 768px) {
  .lp-faq {
    padding: 54px 0 64px;
  }

  .lp-faq-head {
    margin-bottom: 22px;
  }

  .lp-faq-list {
    gap: 14px;
  }

  .lp-faq-item summary {
    font-size: 17px;
    padding: 16px 48px 16px 18px;
  }

  .lp-faq-item p {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}
