
  /* ===== PRECIWELD FAQ styles (lightweight, clean) ===== */
  .pw-faq { padding: 32px 0; }
  .pw-faq__container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: #111827;
  }
  .pw-faq__header { margin-bottom: 18px; }
  .pw-faq__title {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 6px;
    font-weight: 700;
  }
  .pw-faq__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
  }
  .pw-faq__category { margin-top: 22px; }
  .pw-faq__cat-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 700;
    color: #0f172a;
  }
  .pw-faq__items {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
  }
  .pw-faq__item { border-top: 1px solid #e5e7eb; }
  .pw-faq__item:first-child { border-top: 0; }

  .pw-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  /* Hide default marker */
  .pw-faq__q::-webkit-details-marker { display: none; }

  /* Chevron */
  .pw-faq__q::after {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform .15s ease;
    margin-left: 8px;
  }
  details[open] > .pw-faq__q::after { transform: rotate(-135deg); }

  .pw-faq__a {
    padding: 0 16px 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #374151;
  }

  /* Hover / focus */
  .pw-faq__q:hover { background: #f9fafb; }
  .pw-faq__q:focus { outline: 2px solid #93c5fd; outline-offset: -2px; border-radius: 8px; }

  /* Mobile */
  @media (max-width: 640px) {
    .pw-faq { padding: 24px 0; }
    .pw-faq__title { font-size: 20px; }
  }
