/* FAQ SKwP - style */
/* ───── FAQ REDESIGN ───── */
  .faq-search-bar {
    display: flex;
    align-items: center;
    border: 2px solid #1cc55f;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 28px;
    margin-top: 60px;
    background: #fff;
  }
  .faq-search-bar input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 13px 18px !important;
    line-height: 22px !important;
    height: 22px !important;
    font-size: 15px;
    font-family: inherit;
    color: #282d54;
    margin: 0 !important;
  }
  .faq-search-bar input::placeholder { color: #aaa; }
  .faq-search-btn {
    background: #1cc55f;
    border: none;
    padding: 0 18px;
    height: 48px;
    cursor: pointer;
    color: #fff;
    display: flex; align-items: center;
  }
  .faq-search-btn svg { width: 18px; height: 18px; }

  /* Category pills */
  .faq-cats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .cat-pill {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.15s;
    display: flex; align-items: center; gap: 6px;
  }
  .cat-pill:hover { border-color: #1cc55f; color: #1cc55f; }
  .cat-pill.active { background: #282d54; border-color: #282d54; color: #fff; }
  .cat-pill .count {
    background: rgba(0,0,0,0.12);
    border-radius: 100px;
    padding: 1px 7px;
    font-size: 11px;
  }
  .cat-pill.active .count { background: rgba(255,255,255,0.25); }

  /* Results info */
  .faq-results-info {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    min-height: 20px;
  }
  .faq-results-info strong { color: #282d54; }

  /* FAQ sections */
  .faq-section { margin-bottom: 32px; }
  .faq-section-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    color: #282d54;
    padding: 0 0 12px 0;
    border-bottom: 3px solid #1cc55f;
    margin-bottom: 4px;
  }

  /* Accordion items */
  .faq-item {
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
  }
  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: inherit;
  }
  .faq-question:hover .faq-q-text { color: #1cc55f; }

  .faq-q-text {
    font-size: 15px;
    font-weight: 400;
    color: #282d54;
    line-height: 1.4;
    transition: color 0.15s;
    text-wrap: pretty;
  }
  .faq-item.open .faq-q-text { color: #1cc55f; }

  .faq-chevron {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s, background 0.15s;
    margin-top: 1px;
  }
  .faq-chevron svg { width: 12px; height: 12px; color: #555; }
  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: #1cc55f;
  }
  .faq-item.open .faq-chevron svg { color: #fff; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
  }
  .faq-item.open .faq-answer { max-height: 600px; }

  .faq-answer-inner {
    padding: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
  }
  .faq-answer-inner a { color: #1cc55f; font-weight: 500; }
  .faq-answer-inner a:hover { text-decoration: underline; }
  .faq-answer-inner ul { margin: 8px 0 8px 20px; }
  .faq-answer-inner li { margin-bottom: 4px; }
  .faq-answer-inner .cities {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
  }
  .faq-answer-inner .city-tag {
    background: #f0f7f3;
    border: 1px solid #c8e6d0;
    color: #1cc55f;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
  }

  /* Helpful feedback */
  .faq-helpful {
    display: flex; align-items: center; gap: 10px;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px; color: #888;
  }
  .helpful-btn {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
  }
  .helpful-btn:hover { border-color: #1cc55f; color: #1cc55f; }
  .helpful-btn.voted { background: #f0f7f3; border-color: #1cc55f; color: #1cc55f; }

  /* No results */
  .faq-empty {
    padding: 48px 0;
    text-align: center;
    color: #888;
    display: none;
  }
  .faq-empty.visible { display: block; }
  .faq-empty h3 { font-size: 18px; color: #555; margin-bottom: 8px; }

  /* CTA block */
  .faq-cta {
    margin-top: 40px;
    background: #f5faf7;
    border: 1px solid #c8e6d0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .faq-cta h3 { font-size: 16px; font-weight: 400; color: #282d54; margin-bottom: 6px; }
  .faq-cta p { font-size: 13px; color: #666; }
  .faq-cta-btn {
    background: #1cc55f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
  }
  .faq-cta-btn:hover { background: #16a84f; }

  /* Highlight for search */
  mark { background: #fff3a3; border-radius: 2px; padding: 0 1px; }

  /* Hidden by filter */
  .faq-section.hidden { display: none; }
  .faq-item.hidden { display: none; }