
  
  /* =============================================
     FAQ — Section 9
     CIALDINI: Commitment & Consistency — small yes leads to buy
     CIALDINI: Authority — addresses objections proactively
     CIALDINI: "But you are free" — mention refund policy
  ============================================= */
  .faq {
    padding: 7rem 8vw;
    background: var(--ivory-dark);
  }

  .faq-inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .faq-inner .section-headline { text-align: center; margin-bottom: 3rem; }
  .faq-inner .section-headline em { color: var(--sage-dark); }

  .faq-item {
    border-top: 1px solid var(--ivory-dark);
    padding: 1.5rem 0;
  }

  .faq-item:first-of-type { border-top: 1px solid var(--sage-light); }

  .faq-question {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
    font-size: 0.9rem;
    transition: transform 0.2s;
  }

  .faq-answer {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
    padding-top: 0;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 0.9rem;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }
