/* --- Design Tokens Extension --- */
    :root {
      --text-body: #374151;
      --text-muted: #4b5563;
      --text-subtle: #6b7280;
      --color-border: #e5e7eb;
      --color-border-dark: #d1d5db;
      --color-gray-400: #9ca3af;
      --color-gray-50: #f3f4f6;
      --header-height: 57px;
    }

    /* --- Focus Styles (page-specific) --- */
    .faq-hero *:focus-visible,
    .faq-cta *:focus-visible {
      outline-color: var(--color-light-blue);
    }

    /* --- Hero --- */
    .faq-hero {
      background: var(--color-navy);
      color: var(--color-white);
      padding: 64px 0 72px;
      text-align: center;
    }
    .faq-hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .faq-hero p {
      font-size: 1.2rem;
      color: #c5d5e8;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.65;
    }
    .faq-last-updated {
      text-align: center;
      color: var(--text-subtle);
      font-size: 0.85rem;
      margin-bottom: 32px;
    }

    /* --- Category Filter --- */
    .faq-categories {
      background: var(--color-white);
      border-bottom: 1px solid var(--color-border);
      padding: 20px 0;
      position: sticky;
      top: var(--header-height);
      z-index: 50;
    }
    .faq-categories-inner {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .faq-category-btn {
      padding: 8px 20px;
      border-radius: 999px;
      border: 1px solid var(--color-border-dark);
      background: var(--color-white);
      color: var(--text-muted);
      font-family: var(--font-family);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s ease;
      white-space: nowrap;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
    .faq-category-btn:hover {
      border-color: var(--color-navy);
      color: var(--color-navy);
    }
    .faq-category-btn.active {
      background: var(--color-navy);
      color: var(--color-white);
      border-color: var(--color-navy);
    }

    /* --- FAQ Content --- */
    .faq-content {
      padding: 64px 0 80px;
      background: var(--color-white);
    }
    .faq-content .container {
      max-width: 760px;
    }

    /* --- FAQ Category Group --- */
    .faq-group {
      margin-bottom: 48px;
    }
    .faq-group:last-child {
      margin-bottom: 0;
    }
    .faq-group-heading {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--color-pale-blue);
    }
    .faq-group-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--color-pale-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .faq-group-icon svg {
      color: var(--color-navy);
    }
    .faq-group-heading h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--color-navy);
    }

    /* --- FAQ List --- */
    .faq-list {
      list-style: none;
    }

    /* --- FAQ Accordion Items --- */
    .faq-item-v2 {
      border-bottom: 1px solid var(--color-border);
    }
    .faq-item-v2.faq-hidden {
      display: none;
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
      min-height: 56px;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      font-family: var(--font-family);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--color-black);
      text-align: left;
    }
    .faq-question:hover {
      color: var(--color-navy);
    }
    .faq-question svg {
      flex-shrink: 0;
      transition: transform 0.25s ease;
      color: var(--text-subtle);
    }
    .faq-item-v2.open .faq-question svg {
      transform: rotate(45deg);
      color: var(--color-navy);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-answer-inner {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding-bottom: 20px;
    }
    .faq-answer-inner a {
      color: var(--color-navy);
      font-weight: 500;
      text-decoration: underline;
    }

    /* --- Search --- */
    .faq-search {
      max-width: 480px;
      margin: 0 auto 48px;
      position: relative;
    }
    .faq-search-input {
      width: 100%;
      padding: 16px 48px 16px 48px;
      border: 2px solid var(--color-border);
      border-radius: 12px;
      font-family: var(--font-family);
      font-size: 1rem;
      color: var(--color-black);
      transition: border-color 0.2s;
      background: var(--color-white);
    }
    .faq-search-input::-webkit-search-cancel-button {
      -webkit-appearance: none;
    }
    .faq-search-input::placeholder {
      color: #6b7280;
    }
    .faq-search-input:focus-visible {
      outline: 3px solid var(--color-navy);
      outline-offset: 2px;
      border-color: var(--color-navy);
    }
    .faq-search-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-gray-400);
      pointer-events: none;
    }
    .faq-search-clear {
      display: none;
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      color: var(--color-gray-400);
      padding: 4px;
      min-width: 32px;
      min-height: 32px;
      align-items: center;
      justify-content: center;
    }
    .faq-search-clear:hover {
      color: var(--color-navy);
    }
    .faq-no-results {
      text-align: center;
      padding: 40px 0;
      color: var(--text-subtle);
      display: none;
    }
    .faq-no-results p {
      font-size: 1.05rem;
      margin-bottom: 8px;
    }
    .faq-no-results .faq-no-results-sub {
      font-size: 0.9rem;
    }

    /* --- Still Have Questions --- */
    .faq-contact {
      background: var(--color-cream);
      padding: 64px 0;
    }
    .faq-contact-inner {
      display: flex;
      gap: 40px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      text-align: center;
    }
    .faq-contact-text {
      max-width: 400px;
    }
    .faq-contact-text h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .faq-contact-text p {
      color: var(--text-muted);
      font-size: 1.125rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .faq-contact-methods {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .faq-contact-method {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      background: var(--color-white);
      border-radius: 12px;
      text-decoration: none;
      color: var(--color-black);
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid var(--color-border);
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .faq-contact-method:hover {
      border-color: var(--color-navy);
      box-shadow: 0 4px 16px rgba(17, 51, 98, 0.08);
    }
    .faq-contact-method svg {
      color: var(--color-navy);
      flex-shrink: 0;
    }

    /* --- CTA --- */
    .faq-cta {
      background: var(--color-black);
      color: var(--color-white);
      padding: 96px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .faq-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(ellipse at center, rgba(17,51,98,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .faq-cta .container {
      position: relative;
      z-index: 1;
    }
    .faq-cta h2 {
      font-family: var(--font-family);
      font-size: 2.4rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .faq-cta p {
      font-size: 1.15rem;
      color: #d1d5db;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }
    .faq-cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .faq-cta-trust {
      margin-top: 20px;
      font-size: 0.85rem;
      color: var(--color-gray-400);
    }

    /* --- Reduced Motion --- */
    @media (prefers-reduced-motion: reduce) {
      .fade-in { opacity: 1; transform: none; transition: none; }
      .faq-answer { transition: none; }
      .faq-question svg { transition: none; }
      .faq-contact-method { transition: none; }
      .faq-category-btn { transition: none; }
    }

    /* --- Noscript Fallback --- */
    /* Shown only when JS is disabled — see <noscript> in body */

    /* ===== Responsive ===== */

    @media (max-width: 1024px) {
      .faq-hero h1 { font-size: 2.4rem; }
      .faq-cta h2 { font-size: 2.2rem; }
    }

    @media (max-width: 834px) {
      .faq-hero h1 { font-size: 2.2rem; }
      .faq-contact-inner { flex-direction: column; text-align: center; }
    }

    @media (max-width: 640px) {
      .faq-hero { padding: 48px 0 56px; }
      .faq-hero h1 { font-size: 1.8rem; }
      .faq-content { padding: 48px 0 64px; }
      .faq-categories-inner { gap: 6px; }
      .faq-category-btn { padding: 8px 16px; font-size: 0.85rem; }
      .faq-cta { padding: 80px 0; }
      .faq-cta h2 { font-size: 2rem; }
      .faq-cta-buttons { flex-direction: column; align-items: center; }
      .faq-contact-methods { flex-direction: column; align-items: center; }
    }

    @media (max-width: 480px) {
      .faq-hero h1 { font-size: 1.6rem; }
      .faq-question { font-size: 1rem; }
      .faq-answer-inner { font-size: 1.05rem; }
      .faq-group-heading h2 { font-size: 1.15rem; }
    }
