  /* ── Category filter pill ────────────────────────────────── */
  .cat-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: white;
    color: #3D4A56;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .cat-pill:hover { border-color: #F5A523; color: #1C1C1C; }
  .cat-pill.active {
    background: #C8700A;
    border-color: #C8700A;
    color: white;
    font-weight: 600;
  }

  /* ── FAQ section heading ─────────────────────────────────── */
  .faq-section-heading {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1C1C1C;
    padding: 28px 0 12px;
    border-bottom: 2px solid #E5E7EB;
    margin-bottom: 4px;
  }

  /* ── FAQ accordion item ──────────────────────────────────── */
  .faq-item {
    border-bottom: 1px solid #E5E7EB;
  }
  .faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1C1C1C;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }
  .faq-btn:hover { color: #C8700A; }
  .faq-chevron {
    flex-shrink: 0;
    color: #9CA3AF;
    transition: transform 0.2s ease, color 0.15s;
  }
  .faq-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: #F5A523;
  }
  .faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s ease;
  }
  .faq-body.open { max-height: 400px; }
  .faq-body-inner {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #3D4A56;
    padding-bottom: 18px;
    padding-right: 32px;
  }

  /* ── Search input ────────────────────────────────────────── */
  .faq-search {
    width: 100%;
    max-width: 420px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #1C1C1C;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 14px 10px 38px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .faq-search::placeholder { color: #9CA3AF; }
  .faq-search:focus {
    border-color: #F5A523;
    box-shadow: 0 0 0 3px rgba(245,165,35,0.12);
  }

  /* ── Support card (bottom CTA) ───────────────────────────── */
  .support-cta-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: box-shadow 0.15s, border-color 0.15s;
    text-decoration: none;
  }
  .support-cta-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #F5A523;
  }
  .support-cta-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
  }

  /* Hide FAQ sections not matching active category */
  .faq-section { display: block; }
  .faq-section.hidden { display: none; }
