<style>
  .faq-wrap {
    font-family: inherit;
    padding: 2.5rem 0;
  }
  .faq-wrap * {
    font-family: inherit;
    box-sizing: border-box;
  }
  .faq-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
  }
  @media (max-width: 700px) {
    .faq-top {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
  .faq-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6140e8;
    margin: 0 0 0.6rem 0;
  }
  .faq-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: inherit;
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
  }
  .faq-intro {
    font-size: 15px;
    color: inherit;
    opacity: 0.75;
    line-height: 1.7;
    margin: 0;
  }
 
  .faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e8e8ed;
    margin-bottom: 1.5rem;
  }
  .faq-item {
    border-bottom: 1px solid #e8e8ed;
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #353c4a;
    line-height: 1.45;
    transition: color 0.2s;
  }
  .faq-question:hover { color: #6140e8; }
  .faq-item.open .faq-question { color: #6140e8; }
 
  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eeebfd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-icon {
    background: #6140e8;
    transform: rotate(45deg);
  }
  .faq-icon svg line { transition: stroke 0.2s; }
  .faq-item.open .faq-icon svg line { stroke: #ffffff; }
 
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-item.open .faq-answer { max-height: 400px; }
 
  .faq-answer-inner {
    padding: 0 0 1.25rem 0;
    font-size: 13px;
    color: inherit;
    opacity: 0.7;
    line-height: 1.7;
  }
 
  .faq-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.25rem 1.5rem;
    background: #353c4a;
    border-radius: 12px;
  }
  .faq-cta-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .faq-cta-logo img {
    width: auto;
    height: auto;
    max-height: 28px;
    display: block;
    filter: brightness(0) invert(1);
  }
  .faq-cta:hover #faqCtaLogoImg {
    animation: faq-spin 0.35s linear infinite;
  }
  @keyframes faq-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .faq-cta-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
  }
  .faq-cta-text strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
  }
  .faq-cta-btn {
    display: inline-block;
    background: #3936EC;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
  }
  .faq-cta-btn:hover {
    background: #5234cc;
    color: #ffffff;
    text-decoration: none;
  }
  @media (max-width: 500px) {
    .faq-cta { flex-direction: column; align-items: flex-start; }
    .faq-cta-logo { display: none; }
  }
</style>