  /* ── FAQ-specific overrides ── */
  .faq-hero { text-align: center; margin-bottom: 48px; }
  .faq-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 12px; line-height: 1.15; }
  .faq-hero p { font-size: .9rem; color: var(--text2); max-width: 420px; margin: 0 auto; line-height: 1.7; }

  .faq-section-title {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    font-family: 'Geist Mono', monospace;
    margin: 36px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .faq-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .faq-item {
    background: var(--bg1);
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 6px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item:hover { border-color: var(--line2); }
  .faq-item.open { border-color: var(--blue-border); }

  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    color: var(--text);
    font-size: .85rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .15s;
    line-height: 1.45;
  }
  .faq-q:hover { background: var(--bg2); }

  .faq-arrow {
    font-size: 1rem;
    color: var(--text3);
    transition: transform .25s cubic-bezier(.175, .885, .32, 1.275), color .2s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-arrow {
    transform: rotate(90deg);
    color: var(--blue);
  }

  .faq-a {
    display: none;
    padding: 0 18px 16px;
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.72;
    font-family: 'Geist Mono', monospace;
  }
  .faq-item.open .faq-a {
    display: block;
    animation: faqSlideDown .2s ease both;
  }

  @keyframes faqSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .faq-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 32px;
    transition: all .2s;
  }
  .faq-back:hover {
    color: var(--text);
    border-color: var(--line2);
    background: var(--bg2);
  }
